Files
trading-journal/backend/.vscode/settings.json

16 lines
457 B
JSON
Raw Permalink Normal View History

2025-09-11 18:24:36 +00:00
{
"[python]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "charliermarsh.ruff"
},
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
2025-09-23 17:37:14 +02:00
"python.testing.pytestEnabled": true,
"python.analysis.typeCheckingMode": "standard",
}