mirror of
https://git.ari.lt/ari/forgejo-stats.git
synced 2024-11-10 03:22:37 +00:00
22 lines
364 B
TOML
22 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__/.*",
|
||
|
]
|