debian-forge/.pylintrc
Christian Kellner 291fadd0b2 pylint: increase max attributes to 10
In three places we have more than 7 instances attributes, but less
then 10; instead of disabling the warning for all these cases,
increase the limit to a reasonable size of 10 and re-enable the
warnings in all the places.
2020-07-21 13:25:04 +02:00

9 lines
270 B
INI

[MASTER]
disable=missing-docstring,too-few-public-methods,invalid-name,duplicate-code,superfluous-parens,too-many-locals,attribute-defined-outside-init,too-many-arguments
max-line-length=120
[TYPECHECK]
ignored-classes=osbuild.loop.LoopInfo
[DESIGN]
max-attributes=10