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

chore(prettier): add override for *.json tab width to match .editorconfig
pull/912/head
Elian Doran 2025-01-09 17:56:15 +07:00 committed by GitHub
commit 71f763f39c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 1 deletions

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