Files

36 lines
1.2 KiB
JSON
Raw Permalink Normal View History

{
// OSGeo Python als Interpreter (QGIS 4.0, Qt6)
"python.defaultInterpreterPath": "D:/OSGeo/apps/Python312/python.exe",
// Pylance: zusätzliche Suchpfade
"python.analysis.extraPaths": [
"D:/OSGeo/apps/qgis/python",
"D:/OSGeo/apps/Python312/Lib/site-packages",
"C:/Users/helbi/AppData/Roaming/QGIS/QGIS3/profiles/dev/python/plugins",
"C:/Users/helbi/AppData/Roaming/QGIS/QGIS3/profiles/dev/python/plugins/sn_basis"
],
// Autocomplete ebenfalls erweitern
"python.autoComplete.extraPaths": [
"D:/OSGeo/apps/qgis/python",
"D:/OSGeo/apps/Python312/Lib/site-packages",
"C:/Users/helbi/AppData/Roaming/QGIS/QGIS3/profiles/dev/python/plugins",
"C:/Users/helbi/AppData/Roaming/QGIS/QGIS3/profiles/dev/python/plugins/sn_basis"
],
// Pylance-Modus
"python.analysis.typeCheckingMode": "basic",
"python.analysis.diagnosticMode": "workspace",
// Tests aktivieren
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true,
"python.testing.unittestArgs": [
"-v",
"-s",
"./test",
"-p",
"*test*.py"
]
}