style(biome): update biome.jsonc config with clearer comment

Add explanation for keeping bracketSameLine as true to minimize changes in current PR while noting false would be better for future
This commit is contained in:
icarus 2025-09-15 07:09:57 +08:00
parent 5b90967693
commit 8d12ea9611

View File

@ -48,7 +48,8 @@
"formatter": {
"arrowParentheses": "always",
"attributePosition": "auto",
"bracketSameLine": true, // false is better. toggle it in the future
// To minimize changes in this PR as much as possible, it's set to true. However, setting it to false would make it more convenient to add attributes at the end.
"bracketSameLine": true,
"bracketSpacing": true,
"jsxQuoteStyle": "double",
"quoteProperties": "asNeeded",