diff options
author | Nick Drozd <nicholasdrozd@gmail.com> | 2018-01-02 19:51:37 -0600 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-01-04 08:11:09 +0100 |
commit | 5f22e3e0444c4c7d8db3fbaa46f289a4851f8222 (patch) | |
tree | b946caa67d5643ef4d4df9d27aab54a6be9e88dc /pylintrc | |
parent | 3ff7a95da3cdbb6d6931cbd2d67feeb71362288f (diff) | |
download | pylint-git-5f22e3e0444c4c7d8db3fbaa46f289a4851f8222.tar.gz |
Set max-locals to 25
Diffstat (limited to 'pylintrc')
-rw-r--r-- | pylintrc | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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 |