23 lines
578 B
JSON
23 lines
578 B
JSON
{
|
|
"python.defaultInterpreterPath": ".venv/bin/python",
|
|
"python.terminal.activateEnvironment": true,
|
|
"[python]": {
|
|
"editor.defaultFormatter": "charliermarsh.ruff",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit",
|
|
"source.fixAll": "explicit"
|
|
},
|
|
"editor.insertSpaces": true,
|
|
"editor.tabSize": 4
|
|
},
|
|
"ruff.enable": true,
|
|
"files.watcherExclude": {
|
|
"**/.venv/**": true,
|
|
"**/__pycache__/**": true,
|
|
"**/*.egg-info/**": true,
|
|
"**/build/**": true,
|
|
"**/dist/**": true
|
|
}
|
|
}
|