setup.cfg; move pylint settings here
Create a setup.cfg file and move the pylint settings from .pylintrc here. This file can be used to configure other tooling as well, so it is in general more useful as a central configuration place.
This commit is contained in:
parent
e97285e00a
commit
6567b8f932
1 changed files with 3 additions and 3 deletions
|
|
@ -1,9 +1,9 @@
|
|||
[MASTER]
|
||||
[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
|
||||
|
||||
[TYPECHECK]
|
||||
[pylint.TYPECHECK]
|
||||
ignored-classes=osbuild.loop.LoopInfo
|
||||
|
||||
[DESIGN]
|
||||
[pylint.DESIGN]
|
||||
max-attributes=10
|
||||
Loading…
Add table
Add a link
Reference in a new issue