pylint: Increase maximum function name length.

This commit is contained in:
Florian Bruhin 2015-08-02 19:51:48 +02:00
parent 2c7dd5c60c
commit 62fde783be

View File

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