]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Reintroduce pylint checks that are not being violated
authorŠtěpán Balážik <stepan@isc.org>
Wed, 28 Jan 2026 00:15:25 +0000 (01:15 +0100)
committerŠtěpán Balážik <stepan@isc.org>
Fri, 20 Feb 2026 14:17:31 +0000 (15:17 +0100)
We might reintroduce them later if they become obnoxious.

pyproject.toml

index 2bc530b2cb1ae0d6468bea1d1ced979ef70ac53f..99ce2021e4bac7b71f3e772eeb7ee1c0ce2acc5e 100644 (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]