chore(vscode): add some settings overrides

This commit is contained in:
cswimr 2025-01-26 13:07:46 +00:00
parent 3d882625d2
commit 3063721b8d
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

11
.vscode/settings.json vendored
View file

@ -1,6 +1,5 @@
{
"[python]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
},
@ -8,5 +7,15 @@
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.formatOnSave": true,
"files.exclude": {
"**/.git": true,
"**/__pycache__": true,
"**/.ruff_cache": true,
"**/.mypy_cache": true
}
}