kiwi-simple-metrics/.vscode/settings.json

20 lines
656 B
JSON
Raw Normal View History

2023-08-30 20:55:48 +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": {
"source.organizeImports": "explicit"
2023-08-30 20:55:48 +00:00
},
"git.closeDiffOnOperation": true,
"python.analysis.typeCheckingMode": "basic",
"python.analysis.diagnosticMode": "workspace",
2023-08-30 20:55:48 +00:00
"python.testing.pytestArgs": [
"--import-mode=importlib"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"black-formatter.importStrategy": "fromEnvironment",
"flake8.importStrategy": "fromEnvironment",
2023-08-30 20:55:48 +00:00
}