debian-forge/setup.cfg
Christian Kellner d8a8dc84d6 setup.cfg: increase max-statements to 75
The default is 50, which we hit in a few places already. Let's do
75, equally arbitrary but gives us a bit more wiggle room.
2021-10-30 00:16:03 +01:00

12 lines
326 B
INI

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