2023-08-30 20:55:48 +00:00
|
|
|
{
|
2023-12-30 17:18:34 +00:00
|
|
|
"python.languageServer": "Pylance",
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"[python]": {
|
|
|
|
"editor.defaultFormatter": "ms-python.black-formatter"
|
|
|
|
},
|
2023-08-30 20:55:48 +00:00
|
|
|
"editor.codeActionsOnSave": {
|
2023-12-30 17:18:34 +00:00
|
|
|
"source.organizeImports": "explicit"
|
2023-08-30 20:55:48 +00:00
|
|
|
},
|
|
|
|
"git.closeDiffOnOperation": true,
|
|
|
|
"python.analysis.typeCheckingMode": "basic",
|
2023-12-30 17:18:34 +00:00
|
|
|
"python.analysis.diagnosticMode": "workspace",
|
2023-08-30 20:55:48 +00:00
|
|
|
"python.testing.pytestArgs": [
|
|
|
|
"--import-mode=importlib"
|
|
|
|
],
|
2023-12-30 17:18:34 +00:00
|
|
|
"python.testing.unittestEnabled": false,
|
|
|
|
"python.testing.pytestEnabled": true,
|
|
|
|
"black-formatter.importStrategy": "fromEnvironment",
|
|
|
|
"flake8.importStrategy": "fromEnvironment",
|
2023-08-30 20:55:48 +00:00
|
|
|
}
|