debian-forge/setup.cfg
Christian Kellner 89f372fa3c setup.cfg: set max line length in pycodestyle
Move the max-line-length setting to the `pycodestyle` section,
which is read by pylint but also other tools like autopep8.
2021-05-12 14:26:16 +02:00

11 lines
308 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
[pycodestyle]
max-line-length = 120