summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2017-10-31 07:35:00 +0100
committerFlorian Bruhin <git@the-compiler.org>2017-10-31 07:35:00 +0100
commit0b86b302a2c4ed5d03d50ea282e96bb9ddc7b3c8 (patch)
tree5067eac4f3a62daa24e34bdea9e703746d1ac88d /.pylintrc
parent2becc1709994c1594f550d55dd13a6ce65ffe4cf (diff)
downloadqutebrowser-0b86b302a2c4ed5d03d50ea282e96bb9ddc7b3c8.tar.gz
qutebrowser-0b86b302a2c4ed5d03d50ea282e96bb9ddc7b3c8.zip
pylint: Turn off some more too-many-* stuff globally
Humans are just better at judging what's okay here than a machine.
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc5
1 files changed, 4 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index 443979bcd..bca11bf80 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -41,7 +41,10 @@ disable=no-self-use,
unsupported-membership-test,
unsupported-assignment-operation,
unsubscriptable-object,
- too-many-boolean-expressions
+ too-many-boolean-expressions,
+ too-many-locals,
+ too-many-branches,
+ too-many-statements
[BASIC]
function-rgx=[a-z_][a-z0-9_]{2,50}$