Move the max-line-length setting to the `pycodestyle` section, which is read by pylint but also other tools like autopep8.
11 lines
308 B
INI
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
|