blog.ari.lt/pyproject.toml

15 lines
273 B
TOML
Raw Normal View History

[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