Files
JsonXMLUdpakker/.vscode/settings.json
2026-03-06 17:03:47 +01:00

21 lines
555 B
JSON

{
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
"python.analysis.extraPaths": [
"${workspaceFolder}/src"
],
"python.analysis.typeCheckingMode": "basic",
"editor.formatOnSave": true,
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
}
},
"ruff.nativeServer": "on",
"files.exclude": {
"**/__pycache__": true,
".pytest_cache": true,
".ruff_cache": true
}
}