2017-10-26 09:21:46 +02:00
|
|
|
[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,
|
2019-03-19 17:23:42 +01:00
|
|
|
unnecessary-pass,
|
2017-10-26 09:21:46 +02:00
|
|
|
unused-import,
|
2018-10-15 07:59:52 +02:00
|
|
|
useless-object-inheritance,
|
|
|
|
consider-using-dict-comprehension,
|
|
|
|
consider-using-set-comprehension,
|
2017-10-26 09:21:46 +02:00
|
|
|
|
|
|
|
[BASIC]
|
|
|
|
|
2019-03-21 06:14:22 +01:00
|
|
|
bad-names=foo,
|
|
|
|
bar,
|
|
|
|
baz,
|
|
|
|
toto,
|
|
|
|
tutu,
|
|
|
|
tata,
|
|
|
|
_,
|
|
|
|
|
|
|
|
good-names=i,
|
|
|
|
j,
|
|
|
|
k,
|
|
|
|
ex,
|
|
|
|
Run,
|
|
|
|
|
2017-10-26 09:21:46 +02:00
|
|
|
method-rgx=[a-z_][a-z0-9_]{2,40}$
|
|
|
|
function-rgx=[a-z_][a-z0-9_]{2,40}$
|