added prettier overrides

This commit is contained in:
Alexander Popov 2024-12-12 21:20:18 +03:00
parent 53b2658a81
commit b2c49c7507
Signed by: iiiypuk
GPG Key ID: E47FE0AB36CD5ED6

View File

@ -1,10 +1,11 @@
{ {
"printWidth": 100, "printWidth": 132,
"bracketSpacing": true, "bracketSpacing": true,
"bracketSameLine": true, "bracketSameLine": true,
"semi": true, "semi": true,
"singleQuote": true, "singleQuote": true,
"arrowParens": "always", "arrowParens": "always",
"htmlWhitespaceSensitivity": "strict", "htmlWhitespaceSensitivity": "strict",
"endOfLine": "lf" "endOfLine": "lf",
"overrides": [{ "files": "*.json", "options": { "printWidth": 999 } }]
} }