26 lines
698 B
INI
26 lines
698 B
INI
[MASTER]
|
|
reports=no
|
|
|
|
# Reasons disabled:
|
|
# locally-disabled - it spams too much
|
|
# duplicate-code - it's annoying
|
|
# unused-argument - generic callbacks and setup methods create a lot of warnings
|
|
# too-many-* - are not enforced for the sake of readability
|
|
# too-few-* - same as too-many-*
|
|
# no-else-return - I don't see any reason to enforce this. both forms are readable
|
|
|
|
disable=
|
|
locally-disabled,
|
|
unused-argument,
|
|
duplicate-code,
|
|
too-many-arguments,
|
|
too-many-branches,
|
|
too-many-instance-attributes,
|
|
too-many-locals,
|
|
too-many-public-methods,
|
|
too-many-return-statements,
|
|
too-many-statements,
|
|
too-many-lines,
|
|
too-few-public-methods,
|
|
no-else-return,
|