Files
home-automation-backend/.vscode/settings.json
2024-08-28 22:53:58 +02:00

16 lines
434 B
JSON

{
"[python]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "charliermarsh.ruff"
},
"python.testing.pytestArgs": [
"src/",
"${workspaceFolder}"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
}