76bf861308
* Fix issues reported by the latest pylint. * Split pylint runs into more contexts. * Upgrade pylint.
21 lines
472 B
Text
21 lines
472 B
Text
[MESSAGES CONTROL]
|
|
|
|
disable=
|
|
too-few-public-methods,
|
|
too-many-arguments,
|
|
too-many-branches,
|
|
too-many-instance-attributes,
|
|
too-many-lines,
|
|
too-many-locals,
|
|
too-many-nested-blocks,
|
|
too-many-return-statements,
|
|
too-many-statements,
|
|
unused-import,
|
|
useless-object-inheritance,
|
|
consider-using-dict-comprehension,
|
|
consider-using-set-comprehension,
|
|
|
|
[BASIC]
|
|
|
|
method-rgx=[a-z_][a-z0-9_]{2,40}$
|
|
function-rgx=[a-z_][a-z0-9_]{2,40}$
|