mirror of
https://git.ari.lt/ari.lt/blog.ari.lt.git
synced 2025-02-04 09:39:25 +01:00
b0bdb02a01
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
14 lines
274 B
TOML
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
|