summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2017-10-11 08:09:55 +0200
committerFlorian Bruhin <git@the-compiler.org>2017-10-11 08:41:23 +0200
commitbdc82bc633a50d937dac483d3f6789ddc1652029 (patch)
tree8679422eb8e28e75a6e194acef40679358de9d68 /.pylintrc
parent59a1609dd8fab06f28123be65a9d9645837ec8fe (diff)
downloadqutebrowser-bdc82bc633a50d937dac483d3f6789ddc1652029.tar.gz
qutebrowser-bdc82bc633a50d937dac483d3f6789ddc1652029.zip
Fix lint
See https://github.com/PyCQA/pylint/issues/1698
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}$