22 lines
682 B
TOML
22 lines
682 B
TOML
# this exists purely to wrangle the language servers into doing useful things for all the miscellaneous python scripts in this repo. This repo is not a python project
|
|
|
|
[tool.pyright]
|
|
verboseOutput = true
|
|
pythonPlatform = "Linux"
|
|
pythonVersion = "3.12"
|
|
|
|
[[tool.pyright.executionEnvironments]]
|
|
root = "tests/liam/testScript"
|
|
extraPaths = [
|
|
".generated/nixpkgs/nixos/lib",
|
|
".generated/liam-test"
|
|
]
|
|
|
|
[[tool.pyright.executionEnvironments]]
|
|
root = "scripts/dns"
|
|
extraPaths = [ ".generated/dns/python-env/lib/python3.12/site-packages" ]
|
|
|
|
[[tool.pyright.executionEnvironments]]
|
|
root = "tests/liam/mailtest"
|
|
extraPaths = [ ".generated/mailtest/python-env/lib/python3.12/site-packages" ]
|