Initieret

This commit is contained in:
2026-03-06 17:03:47 +01:00
commit 71f70b3d75
40 changed files with 130 additions and 0 deletions

21
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,21 @@
{
"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
}
}