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.
12 lines
342 B
INI
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
|