blog.ari.lt/pyproject.toml
Ari Archer dd29749b5a
total rewrite of the blogging system
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2023-08-29 10:27:14 +03: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__/.*",
]