summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2019-01-15 14:05:57 +0100
committerClaudiu Popa <pcmanticore@gmail.com>2019-01-15 14:06:54 +0100
commite2f3dbd62e7e090c95bba1d9bc487c56c25b954a (patch)
tree512d2edb4e8829c4ee4eda4a830d7fcec2391559 /pylintrc
parent7197fb7287505388bbf7af1c73adaf09bf3b04f5 (diff)
downloadastroid-git-e2f3dbd62e7e090c95bba1d9bc487c56c25b954a.tar.gz
Revert "Disable the pylint job until we fix the clone inference bugs"
This reverts commit 7197fb7287505388bbf7af1c73adaf09bf3b04f5. Disable just no-member instead of disabling everything.
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc4
1 files changed, 3 insertions, 1 deletions
diff --git a/pylintrc b/pylintrc
index 2228e1c4..b752ee50 100644
--- a/pylintrc
+++ b/pylintrc
@@ -129,7 +129,9 @@ disable=fixme,invalid-name, missing-docstring, too-few-public-methods,
# We'll have to disable this until we drop support for Python 2
stop-iteration-return,
# black handles these
- format
+ format,
+ # temporary until we fix the problems with InferenceContexts
+ no-member
[BASIC]