feat(editorconfig,devcontainer): configure JSON formatting settings for consistency

This commit is contained in:
Julian Pawlowski 2026-04-11 21:49:04 +00:00
parent b7f1efce1f
commit e44f639b41
2 changed files with 11 additions and 0 deletions

View file

@ -77,6 +77,14 @@
"python.testing.pytestArgs": [
"--no-cov"
],
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2
},
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,

View file

@ -13,5 +13,8 @@ indent_size = 4
# Python style aligns with Black
indent_size = 4
[*.json]
indent_size = 2
[*.md]
trim_trailing_whitespace = false