summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorNick Drozd <nicholasdrozd@gmail.com>2018-01-02 19:51:37 -0600
committerClaudiu Popa <pcmanticore@gmail.com>2018-01-04 08:11:09 +0100
commit5f22e3e0444c4c7d8db3fbaa46f289a4851f8222 (patch)
treeb946caa67d5643ef4d4df9d27aab54a6be9e88dc /pylintrc
parent3ff7a95da3cdbb6d6931cbd2d67feeb71362288f (diff)
downloadpylint-git-5f22e3e0444c4c7d8db3fbaa46f289a4851f8222.tar.gz
Set max-locals to 25
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc3
1 files changed, 1 insertions, 2 deletions
diff --git a/pylintrc b/pylintrc
index d90bc95e3..d5d31646f 100644
--- a/pylintrc
+++ b/pylintrc
@@ -62,7 +62,6 @@ disable=
no-member,
redefined-builtin,
protected-access,
- too-many-locals,
too-many-arguments,
too-many-statements,
too-few-public-methods,
@@ -313,7 +312,7 @@ max-args=5
ignored-argument-names=_.*
# Maximum number of locals for function / method body
-max-locals=15
+max-locals=25
# Maximum number of return / yield for function / method body
max-returns=11