starter-kit/.vscode/settings.json
2025-12-12 09:40:02 -05:00

26 lines
No EOL
537 B
JSON

{
"esbonio.sphinx.confDir": "",
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"files.watcherExclude": {
"**/_build/**": true,
"**/__pycache__": true
},
"search.exclude": {
"**/__pycache__": true,
"**/.pytest_cache": true,
"**/.mypy_cache": true,
"**/build": true,
"**/dist": true,
"**/_build": true,
"**/_build/**": true
},
"files.exclude": {
"**/_build": true,
"**/*.egg-info": true,
"**/__pycache__": true
}
}