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
commit 71f763f39c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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