data-anaxi/.vscode/settings.json

19 lines
483 B
JSON
Raw Normal View History

2024-08-08 18:10:49 +02:00
{
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
},
"isort.args": [
"--profile",
"black"
],
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
2024-08-08 18:34:27 +02:00
"python.analysis.typeCheckingMode": "off",
2024-08-08 18:10:49 +02:00
}