vscode-python3/.vscode/settings.json

20 lines
679 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",
"[python]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
2023-03-22 11:47:23 +00:00
},
"git.closeDiffOnOperation": true,
"python.analysis.typeCheckingMode": "basic",
2023-10-26 21:31:03 +00:00
"python.analysis.diagnosticMode": "workspace",
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
2023-03-22 11:47:23 +00:00
"python.testing.pytestArgs": [
"--import-mode=importlib"
],
2024-04-09 12:30:51 +00:00
// "black-formatter.importStrategy": "fromEnvironment",
// "flake8.importStrategy": "fromEnvironment",
2023-03-22 11:47:23 +00:00
}