2022-10-07 23:50:20 +00:00
|
|
|
{
|
2023-09-03 16:37:43 +00:00
|
|
|
"python.languageServer": "Pylance",
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"[python]": {
|
|
|
|
"editor.defaultFormatter": "ms-python.black-formatter"
|
|
|
|
},
|
|
|
|
"editor.codeActionsOnSave": {
|
2024-03-21 22:00:45 +00:00
|
|
|
"source.organizeImports": "explicit"
|
2023-09-03 16:37:43 +00:00
|
|
|
},
|
|
|
|
"git.closeDiffOnOperation": true,
|
|
|
|
"python.analysis.typeCheckingMode": "basic",
|
|
|
|
"python.analysis.diagnosticMode": "workspace",
|
2023-09-14 23:36:20 +00:00
|
|
|
"python.testing.pytestArgs": [
|
|
|
|
"test"
|
|
|
|
],
|
|
|
|
"python.testing.unittestEnabled": false,
|
|
|
|
"python.testing.pytestEnabled": true,
|
2023-10-27 18:55:20 +00:00
|
|
|
"black-formatter.importStrategy": "fromEnvironment",
|
|
|
|
"flake8.importStrategy": "fromEnvironment",
|
2023-09-03 16:37:43 +00:00
|
|
|
}
|