advent22/api/.vscode/settings.json

20 lines
595 B
JSON
Raw Permalink Normal View History

2022-10-07 23:50:20 +00:00
{
2023-09-03 16:37:43 +00:00
"python.languageServer": "Pylance",
"editor.formatOnSave": true,
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"editor.codeActionsOnSave": {
2024-03-21 22:00:45 +00:00
"source.organizeImports": "explicit"
2023-09-03 16:37:43 +00:00
},
"git.closeDiffOnOperation": true,
"python.analysis.typeCheckingMode": "basic",
"python.analysis.diagnosticMode": "workspace",
"python.testing.pytestArgs": [
"test"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
2023-10-27 18:55:20 +00:00
"black-formatter.importStrategy": "fromEnvironment",
"flake8.importStrategy": "fromEnvironment",
2023-09-03 16:37:43 +00:00
}