From: Štěpán Balážik Date: Wed, 28 Jan 2026 00:15:25 +0000 (+0100) Subject: Reintroduce pylint checks that are not being violated X-Git-Tag: v9.21.19~15^2~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=115e64ea9e94683c3468a0b7f60cdf2e40e38204;p=thirdparty%2Fbind9.git Reintroduce pylint checks that are not being violated We might reintroduce them later if they become obnoxious. --- diff --git a/pyproject.toml b/pyproject.toml index 2bc530b2cb1..99ce2021e4b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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]