settings.json•699 B
{
"files.exclude": {
"**/.venv": true,
"**/.pytest_cache": true,
"**/__pycache__": true
},
"search.exclude": {
"**/.venv": true,
"**/.pytest_cache": true,
"**/__pycache__": true
},
"python.analysis.typeCheckingMode": "standard",
"[python]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "charliermarsh.ruff"
},
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
}