{
"python.defaultInterpreterPath": ".venv/bin/python",
"[python]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
}
},
"mypy-type-checker.args": [
"--config-file=pyproject.toml"
],
"ruff.enable": true,
"ruff.organizeImports": true,
"python.analysis.extraPaths": [
"src",
".venv/lib/python3.14/site-packages"
]
}