2022-08-28 23:31:17 +00:00
|
|
|
{
|
|
|
|
"python.languageServer": "Pylance",
|
|
|
|
"editor.formatOnSave": true,
|
2023-10-16 18:05:52 +00:00
|
|
|
"[python]": {
|
|
|
|
"editor.defaultFormatter": "ms-python.black-formatter"
|
|
|
|
},
|
2022-08-28 23:31:17 +00:00
|
|
|
"editor.codeActionsOnSave": {
|
|
|
|
"source.organizeImports": true
|
|
|
|
},
|
2022-09-08 00:24:36 +00:00
|
|
|
"git.closeDiffOnOperation": true,
|
2023-10-16 18:05:52 +00:00
|
|
|
"python.analysis.typeCheckingMode": "basic",
|
|
|
|
"python.analysis.diagnosticMode": "workspace",
|
|
|
|
"python.testing.pytestArgs": [
|
|
|
|
"test"
|
|
|
|
],
|
|
|
|
"python.testing.unittestEnabled": false,
|
|
|
|
"python.testing.pytestEnabled": true,
|
2023-10-26 14:43:35 +00:00
|
|
|
"black-formatter.importStrategy": "fromEnvironment",
|
2023-10-26 17:10:20 +00:00
|
|
|
"flake8.importStrategy": "fromEnvironment",
|
2022-08-28 23:31:17 +00:00
|
|
|
}
|