chore: fix pylint warnings

This commit is contained in:
2023-11-02 01:10:31 +08:00
parent 92fcc53015
commit 14f4cef426
15 changed files with 80 additions and 48 deletions

View File

@ -30,3 +30,14 @@ src_paths = ["src/arcaea_offline"]
[tool.pyright]
ignore = ["build/"]
[tool.pylint.main]
jobs = 0
[tool.pylint.logging]
disable = [
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"not-callable", # false positive to sqlalchemy `func.*`, remove this when pylint-dev/pylint(#8138) closed
]