Add .pylintrc to globally suppress warnings we don't really care about

Also, drop the respective disable directives from existing files.
This commit is contained in:
Frantisek Sumsal
2023-08-09 21:57:47 +02:00
parent 2d49429e58
commit 79f902eb09
9 changed files with 31 additions and 24 deletions

23
.pylintrc Normal file
View File

@@ -0,0 +1,23 @@
[MAIN]
extension-pkg-allow-list=lxml
[MESSAGES CONTROL]
disable=fixme,
invalid-name,
line-too-long,
missing-class-docstring,
missing-docstring,
missing-function-docstring,
missing-module-docstring,
too-few-public-methods,
too-many-arguments,
too-many-boolean-expressions,
too-many-branches,
too-many-instance-attributes,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-public-methods,
too-many-return-statements,
too-many-statements,
unspecified-encoding,