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": [
"-n",
"auto",
"--retries=2",
"--xvfb"
],
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false
2024-07-24 13:57:40 +00:00
}