ad.ari.lt/pyproject.toml
Arija A. 885ccd2bed
Cache leaderboard in API as well
Signed-off-by: Arija A. <ari@ari.lt>
2026-05-09 21:02:46 +03:00

22 lines
373 B
TOML

[tool.pyright]
pythonVersion = "3.10"
exclude = [
"venv",
"**/node_modules",
"**/__pycache__",
".git",
"src/migrations"
]
include = ["src"]
venv = "venv"
typeCheckingMode = "strict"
useLibraryCodeForTypes = true
reportMissingTypeStubs = true
[tool.mypy]
exclude = [
"^venv/.*",
"^node_modules/.*",
"^__pycache__/.*",
"src/migrations"
]