chore(prettier): add override for json tabwitdth

use the same value as in the existing .editorconfig
This commit is contained in:
Panagiotis Papadopoulos 2025-01-09 09:24:10 +01:00
parent 6cedd0381d
commit 13feeb0626

View File

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