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:
Christian Kellner 2021-04-29 11:07:44 +00:00 committed by Achilleas Koutsou
parent e97285e00a
commit 6567b8f932

View file

@ -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 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 max-line-length=120
[TYPECHECK] [pylint.TYPECHECK]
ignored-classes=osbuild.loop.LoopInfo ignored-classes=osbuild.loop.LoopInfo
[DESIGN] [pylint.DESIGN]
max-attributes=10 max-attributes=10