ari.lt/pyproject.toml
Arija A. 43d94c2a92
Initialise theme: room101
Signed-off-by: Arija A. <ari@ari.lt>
2025-08-17 20:55:40 +03:00

23 lines
407 B
TOML

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