debian-forge/setup.cfg
Christian Kellner c384639aed setup.cfg: enable attribute-defined-outside-init
This warning was globally disabled in commit c124ab2, due to dynamic
attributes of the `LoopInfo` class. This false positive is silenced
locally now. Some actual positives have meanwhile made it into the
code base, but have fixed via previous commits so we can now enable
W0201/attribute-defined-outside-init again.
2022-05-06 17:33:23 +02:00

12 lines
342 B
INI

[pylint.MASTER]
disable=missing-docstring,too-few-public-methods,invalid-name,duplicate-code,superfluous-parens,too-many-locals,too-many-arguments,consider-using-with,consider-using-from-import
[pylint.TYPECHECK]
ignored-classes=osbuild.loop.LoopInfo
[pylint.DESIGN]
max-attributes=10
max-statements=75
[pycodestyle]
max-line-length = 120