forgejo-stats/pyproject.toml
Ari Archer fe7877fde6
init
Signed-off-by: Ari Archer <ari@ari.lt>
2024-06-21 02:29:56 +03:00

21 lines
364 B
TOML

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