Byparr/.vscode/settings.json

23 lines
591 B
JSON
Raw Permalink Normal View History

2024-07-24 13:57:40 +00:00
{
"[python]": {
2024-11-26 17:43:25 +00:00
"editor.defaultFormatter": "charliermarsh.ruff"
2024-07-24 13:57:40 +00:00
},
2024-11-26 17:43:25 +00:00
"python.analysis.autoImportCompletions": true,
2024-07-24 13:57:40 +00:00
"python.analysis.packageIndexDepths": [
{
"depth": 5,
"includeAllSymbols": true,
2024-11-26 17:43:25 +00:00
"name": ""
2024-07-24 13:57:40 +00:00
}
],
2024-11-26 17:43:25 +00:00
"python.analysis.typeCheckingMode": "standard",
"python.terminal.activateEnvironment": true,
"python.testing.pytestArgs": [
2025-02-17 21:55:02 +00:00
"tests",
2024-11-26 17:43:25 +00:00
"-n",
"auto",
2025-02-17 21:55:02 +00:00
"--retries=3",
2024-11-26 17:43:25 +00:00
],
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false
2024-07-24 13:57:40 +00:00
}