summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-09-17 10:09:44 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-09-17 10:15:56 +0200
commita59b1cf97a5da7288d8e71791d6b2723df84cc11 (patch)
treef141f736b3d5f4223e4564b7109a2cf942fb2512 /pylintrc
parent00f16490985f057b0ac030cfda34df965779d6e2 (diff)
downloadastroid-git-a59b1cf97a5da7288d8e71791d6b2723df84cc11.tar.gz
Fix all R6201: Consider using set for membership
Following the upgrade to pylint 2.11.1
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/pylintrc b/pylintrc
index e3aebf3b..9d642a31 100644
--- a/pylintrc
+++ b/pylintrc
@@ -25,6 +25,8 @@ load-plugins=
pylint.extensions.code_style,
pylint.extensions.overlapping_exceptions,
pylint.extensions.typing,
+ pylint.extensions.code_style,
+ pylint.extensions.set_membership,
pylint.extensions.redefined_variable_type,
# Use multiple processes to speed up Pylint.
@@ -109,8 +111,6 @@ disable=fixme,
no-self-use,
# API requirements in most of the occurrences
unused-argument,
- # We'll have to disable this until we drop support for Python 2
- stop-iteration-return,
# black handles these
format,
# We might want to disable new checkers from master that do not exists