summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2015-12-01 23:01:09 +0100
committerFlorian Bruhin <git@the-compiler.org>2015-12-01 23:01:09 +0100
commiteff0e4c7ccdb51722954715bae8b8b90f40b8d37 (patch)
treeb6fdf8133f52b6923695dfc356e4dc089f82a764 /.pylintrc
parentcf54fa1ef1e2f16f90523acf1499bad430722ad2 (diff)
downloadqutebrowser-eff0e4c7ccdb51722954715bae8b8b90f40b8d37.tar.gz
qutebrowser-eff0e4c7ccdb51722954715bae8b8b90f40b8d37.zip
pylint: Enable useless-suppression globally.
We deactivate it locally where needed, i.e. where we are sure it's some platform-specific thing.
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc4
1 files changed, 3 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index cc8941f49..cf61e8cd9 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -9,6 +9,7 @@ load-plugins=pylint_checkers.config,
pylint_checkers.settrace
[MESSAGES CONTROL]
+enable=all
disable=no-self-use,
fixme,
global-statement,
@@ -30,7 +31,8 @@ disable=no-self-use,
wrong-import-order,
ungrouped-imports,
wrong-import-position,
- redefined-variable-type
+ redefined-variable-type,
+ suppressed-message
[BASIC]
function-rgx=[a-z_][a-z0-9_]{2,50}$