flask/pyproject.toml
Arija A. 90ce4bf7dc
Fix pyright errors.
Signed-off-by: Arija A. <ari@ari.lt>
2025-07-30 22:10:00 +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"
]