style: set bracketSameLine to true in biome config

The change aligns with common JSX formatting preferences where brackets on the same line improve readability for many developers
This commit is contained in:
icarus 2025-09-15 07:07:49 +08:00
parent d442c934ee
commit 9a084c941a

View File

@ -48,7 +48,7 @@
"formatter": {
"arrowParentheses": "always",
"attributePosition": "auto",
"bracketSameLine": false,
"bracketSameLine": true, // false is better. toggle it in the future
"bracketSpacing": true,
"jsxQuoteStyle": "double",
"quoteProperties": "asNeeded",