Merge pull request #906 from pano9000/chore_prettier-json-tabWidth-override

chore(prettier): add override for *.json tab width to match .editorconfig
This commit is contained in:
Elian Doran
2025-01-09 17:56:15 +02:00
committed by GitHub

View File

@@ -10,5 +10,13 @@
"arrowParens": "always",
"proseWrap": "preserve",
"htmlWhitespaceSensitivity": "css",
"endOfLine": "lf"
"endOfLine": "lf",
"overrides": [
{
"files": ["*.json"],
"options": {
"tabWidth": 2
}
}
]
}