mirror of
https://git.ari.lt/ari/forgejo-stats.git
synced 2024-11-09 19:12:38 +00:00
fe7877fde6
Signed-off-by: Ari Archer <ari@ari.lt>
21 lines
364 B
TOML
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__/.*",
|
|
]
|