debian-forge/setup.cfg
Tomáš Hozza 689ca5cfe5 Lint/pylint: disable too-many-positional-arguments check
The new version of Pylint reports this issue in too many places. It is
unlikely that we would change all occurrences of it just to make
Pylint happy. Disable the check.

Signed-off-by: Tomáš Hozza <thozza@redhat.com>
2024-11-25 10:09:18 +01:00

24 lines
528 B
INI

[pylint.MASTER]
disable=missing-docstring,
too-few-public-methods,
invalid-name,
duplicate-code,
superfluous-parens,
too-many-locals,
too-many-arguments,
too-many-positional-arguments,
consider-using-with,
consider-using-from-import,
line-too-long,
useless-option-value,
import-error
[pylint.TYPECHECK]
ignored-classes=osbuild.loop.LoopInfo
[pylint.DESIGN]
max-attributes=10
max-statements=75
[pycodestyle]
max-line-length = 120