Reintroduce pylint checks that are not being violated

We might reintroduce them later if they become obnoxious.

(cherry picked from commit 115e64ea9e)
This commit is contained in:
Štěpán Balážik 2026-01-28 01:15:25 +01:00
parent 4f8d253d7a
commit dd18071893

View file

@ -21,18 +21,14 @@ disable = [
"C0116", # missing-function-docstring
"C0301", # line-too-long, handled better by black
"C0302", # too-many-lines
"C0415", # import-outside-toplevel
"R0801", # duplicate-code
"R0901", # too-many-ancestors
"R0902", # too-many-instance-attributes
"R0903", # too-few-public-methods
"R0904", # too-many-public-methods
"R0911", # too-many-return-statements
"R0912", # too-many-branches
"R0913", # too-many-arguments
"R0914", # too-many-locals
"R0915", # too-many-statements
"R0916", # too-many-boolean-expressions
"R0917", # too-many-positional-arguments
]
[tool.pylint.main]