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.
This commit is contained in:
parent
6567b8f932
commit
89f372fa3c
1 changed files with 3 additions and 1 deletions
|
|
@ -1,9 +1,11 @@
|
|||
[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
|
||||
max-line-length=120
|
||||
|
||||
[pylint.TYPECHECK]
|
||||
ignored-classes=osbuild.loop.LoopInfo
|
||||
|
||||
[pylint.DESIGN]
|
||||
max-attributes=10
|
||||
|
||||
[pycodestyle]
|
||||
max-line-length = 120
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue