pylint: Change maximum method name length to 50.

40 wasn't enough for tests.
This commit is contained in:
Florian Bruhin 2015-07-23 20:54:31 +02:00
parent 41333cd6e1
commit b35a1f3d15

View File

@ -34,7 +34,7 @@ disable=no-self-use,
module-rgx=(__)?[a-z][a-z0-9_]*(__)?$
function-rgx=([a-z_][a-z0-9_]{2,30}|setUpModule|tearDownModule)$
const-rgx=[A-Za-z_][A-Za-z0-9_]{0,30}$
method-rgx=[a-z_][A-Za-z0-9_]{2,40}$
method-rgx=[a-z_][A-Za-z0-9_]{2,50}$
attr-rgx=[a-z_][a-z0-9_]{0,30}$
argument-rgx=[a-z_][a-z0-9_]{0,30}$
variable-rgx=[a-z_][a-z0-9_]{0,30}$