summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc6
1 files changed, 5 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index 39cbf052d..bd988944c 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -36,7 +36,11 @@ disable=no-self-use,
too-many-return-statements,
duplicate-code,
wrong-import-position,
- no-else-return
+ no-else-return,
+ # https://github.com/PyCQA/pylint/issues/1698
+ unsupported-membership-test,
+ unsupported-assignment-operation,
+ unsubscriptable-object
[BASIC]
function-rgx=[a-z_][a-z0-9_]{2,50}$