vscode-python3/.vscode/settings.json

20 lines
650 B
JSON
Raw Normal View History

2023-03-22 11:47:23 +00:00
{
2023-10-26 21:31:03 +00:00
"python.languageServer": "Pylance",
"editor.formatOnSave": true,
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
2023-03-22 11:47:23 +00:00
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"git.closeDiffOnOperation": true,
"python.analysis.typeCheckingMode": "basic",
2023-10-26 21:31:03 +00:00
"python.analysis.diagnosticMode": "workspace",
2023-03-22 11:47:23 +00:00
"python.testing.pytestArgs": [
"--import-mode=importlib"
],
2023-10-26 21:31:03 +00:00
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"black-formatter.importStrategy": "fromEnvironment",
"flake8.importStrategy": "fromEnvironment",
2023-03-22 11:47:23 +00:00
}