This commit is contained in:
2024-07-24 20:31:43 +03:00
commit 234a2b7b0e
20 changed files with 4363 additions and 0 deletions

33
.pylintrc Normal file
View File

@@ -0,0 +1,33 @@
[MAIN]
ignore=.venv
[MESSAGES CONTROL]
disable=
missing-docstring,
too-few-public-methods,
too-many-instance-attributes,
too-many-arguments,
too-many-locals,
too-many-boolean-expressions,
too-many-public-methods,
no-else-return,
singleton-comparison,
unused-argument,
unspecified-encoding,
fixme,
duplicate-code,
extension-pkg-allow-list=
lxml,
GeoIP,
pydantic
[MISCELLANEOUS]
notes=FIXME,TODO
[FORMAT]
max-line-length=120
[DESIGN]
max-parents=8
max-args=8