chore(prettier): disable single quote & enable bracket spacing

This commit is contained in:
Elian Doran 2025-01-09 18:06:58 +02:00
parent 71f763f39c
commit 19ee861699
No known key found for this signature in database

View File

@ -3,10 +3,10 @@
"tabWidth": 4, "tabWidth": 4,
"useTabs": false, "useTabs": false,
"semi": true, "semi": true,
"singleQuote": true, "singleQuote": false,
"quoteProps": "as-needed", "quoteProps": "as-needed",
"trailingComma": "none", "trailingComma": "none",
"bracketSpacing": false, "bracketSpacing": true,
"arrowParens": "always", "arrowParens": "always",
"proseWrap": "preserve", "proseWrap": "preserve",
"htmlWhitespaceSensitivity": "css", "htmlWhitespaceSensitivity": "css",