data-xexe/.vscode/settings.json

18 lines
386 B
JSON
Raw Normal View History

2024-06-03 17:59:57 +02:00
{
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
},
2024-06-03 18:46:34 +02:00
"isort.args": [
"--profile",
"black"
],
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
2024-06-03 17:59:57 +02:00
}