124tg/pyproject.toml
Ari Archer 99c225325c
init
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2023-10-01 19:50:21 +03:00

21 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__/.*",
]