Set max-locals to 25

This commit is contained in:
Nick Drozd 2018-01-02 19:51:37 -06:00 committed by Claudiu Popa
parent 3ff7a95da3
commit 5f22e3e044

View File

@ -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