|
|
|
@ -1,8 +1,11 @@
|
|
|
|
[MESSAGES CONTROL]
|
|
|
|
[MESSAGES CONTROL]
|
|
|
|
|
|
|
|
|
|
|
|
disable=
|
|
|
|
disable=
|
|
|
|
|
|
|
|
consider-using-dict-comprehension, # requires Python 2.7+, but we still require Python 2.6 support
|
|
|
|
|
|
|
|
consider-using-set-comprehension, # requires Python 2.7+, but we still require Python 2.6 support
|
|
|
|
cyclic-import, # consistent results require running with --jobs 1 and testing all files
|
|
|
|
cyclic-import, # consistent results require running with --jobs 1 and testing all files
|
|
|
|
duplicate-code, # consistent results require running with --jobs 1 and testing all files
|
|
|
|
duplicate-code, # consistent results require running with --jobs 1 and testing all files
|
|
|
|
|
|
|
|
no-self-use,
|
|
|
|
too-few-public-methods,
|
|
|
|
too-few-public-methods,
|
|
|
|
too-many-arguments,
|
|
|
|
too-many-arguments,
|
|
|
|
too-many-branches,
|
|
|
|
too-many-branches,
|
|
|
|
@ -12,28 +15,27 @@ disable=
|
|
|
|
too-many-nested-blocks,
|
|
|
|
too-many-nested-blocks,
|
|
|
|
too-many-return-statements,
|
|
|
|
too-many-return-statements,
|
|
|
|
too-many-statements,
|
|
|
|
too-many-statements,
|
|
|
|
no-self-use,
|
|
|
|
|
|
|
|
unused-import, # pylint does not understand PEP 484 type hints
|
|
|
|
unused-import, # pylint does not understand PEP 484 type hints
|
|
|
|
consider-using-dict-comprehension, # requires Python 2.6, which we still support
|
|
|
|
|
|
|
|
consider-using-set-comprehension, # requires Python 2.6, which we still support
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[BASIC]
|
|
|
|
[BASIC]
|
|
|
|
|
|
|
|
|
|
|
|
bad-names=foo,
|
|
|
|
bad-names=
|
|
|
|
|
|
|
|
_,
|
|
|
|
bar,
|
|
|
|
bar,
|
|
|
|
baz,
|
|
|
|
baz,
|
|
|
|
|
|
|
|
foo,
|
|
|
|
|
|
|
|
tata,
|
|
|
|
toto,
|
|
|
|
toto,
|
|
|
|
tutu,
|
|
|
|
tutu,
|
|
|
|
tata,
|
|
|
|
|
|
|
|
_,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
good-names=i,
|
|
|
|
good-names=
|
|
|
|
|
|
|
|
__metaclass__,
|
|
|
|
|
|
|
|
C,
|
|
|
|
|
|
|
|
ex,
|
|
|
|
|
|
|
|
i,
|
|
|
|
j,
|
|
|
|
j,
|
|
|
|
k,
|
|
|
|
k,
|
|
|
|
ex,
|
|
|
|
|
|
|
|
Run,
|
|
|
|
Run,
|
|
|
|
C,
|
|
|
|
|
|
|
|
__metaclass__,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
method-rgx=[a-z_][a-z0-9_]{2,40}$
|
|
|
|
method-rgx=[a-z_][a-z0-9_]{2,40}$
|
|
|
|
function-rgx=[a-z_][a-z0-9_]{2,40}$
|
|
|
|
function-rgx=[a-z_][a-z0-9_]{2,40}$
|
|
|
|
|