aoc2022/pyproject.toml
Ari Archer aa6bcbabc0
day 4
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2022-12-04 17:19:43 +02:00

14 lines
274 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