add vscode settings.json

This commit is contained in:
Jörn-Michael Miehe 2023-03-22 11:47:23 +00:00
parent 1d5e247fab
commit 20f4b577d9

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

@ -0,0 +1,17 @@
{
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"editor.formatOnSave": true,
"git.closeDiffOnOperation": true,
"python.analysis.typeCheckingMode": "basic",
"python.languageServer": "Pylance",
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": [
"--import-mode=importlib"
],
}