blog.ari.lt/pyproject.toml
Arija A. 4ae92b31cf
reinit
Signed-off-by: Arija A. <ari@ari.lt>
2025-03-16 18:08:02 +02:00

21 lines
363 B
TOML

[tool.pyright]
pythonVersion = "3.8"
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__/.*",
]