advent22/api/.vscode/settings.json

32 lines
812 B
JSON
Raw Normal View History

2022-10-07 23:50:20 +00:00
{
"git.closeDiffOnOperation": true,
2023-09-03 16:37:43 +00:00
"[python]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.fixAll": "explicit",
},
2023-09-03 16:37:43 +00:00
},
// "python.analysis.autoImportCompletions": true,
// "python.analysis.importFormat": "relative",
// "python.analysis.fixAll": [
// "source.convertImportFormat",
// "source.unusedImports",
// ],
// "python.analysis.typeCheckingMode": "basic",
// "python.analysis.diagnosticMode": "workspace",
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": [
"--import-mode=importlib",
"test",
],
"ty.diagnosticMode": "workspace",
"ruff.nativeServer": "on",
}