vscode python settings

This commit is contained in:
Pablo Martin 2024-08-08 18:10:49 +02:00
parent 26e638ac7b
commit f8f6e52c59

19
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,19 @@
{
"[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,
"python.analysis.typeCheckingMode": "basic",
}