summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2017-12-15 17:16:55 +0100
committerFlorian Bruhin <git@the-compiler.org>2017-12-15 17:16:55 +0100
commit4c24b9ed4a238200c0c513bd4d3ec7a6ce4a1928 (patch)
tree7b025a8a19df648d8cccd19c73b5c8509a718ced /.pylintrc
parent26a622c46d71996c42a2f1b6f5b380e2a6a9c620 (diff)
downloadqutebrowser-4c24b9ed4a238200c0c513bd4d3ec7a6ce4a1928.tar.gz
qutebrowser-4c24b9ed4a238200c0c513bd4d3ec7a6ce4a1928.zip
Reorder pylint disables
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc24
1 files changed, 12 insertions, 12 deletions
diff --git a/.pylintrc b/.pylintrc
index a6bebec71..8ab3b83a7 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -13,35 +13,35 @@ persistent=n
[MESSAGES CONTROL]
enable=all
-disable=no-self-use,
- fixme,
- global-statement,
- locally-disabled,
- locally-enabled,
- too-many-ancestors,
- too-few-public-methods,
- too-many-public-methods,
+disable=fixme,
+ no-self-use,
cyclic-import,
bad-continuation,
- too-many-instance-attributes,
blacklisted-name,
- too-many-lines,
logging-format-interpolation,
broad-except,
bare-except,
eval-used,
exec-used,
+ global-statement,
ungrouped-imports,
suppressed-message,
- too-many-return-statements,
duplicate-code,
wrong-import-position,
no-else-return,
logging-not-lazy,
+ locally-disabled,
+ locally-enabled,
+ too-many-ancestors,
+ too-many-public-methods,
+ too-many-instance-attributes,
+ too-many-lines,
+ too-many-return-statements,
too-many-boolean-expressions,
too-many-locals,
too-many-branches,
- too-many-statements
+ too-many-statements,
+ too-few-public-methods
[BASIC]
function-rgx=[a-z_][a-z0-9_]{2,50}$