From 9a084c941ab21801f2b2a07a2a183ae66316f703 Mon Sep 17 00:00:00 2001 From: icarus Date: Mon, 15 Sep 2025 07:07:49 +0800 Subject: [PATCH] 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 --- biome.jsonc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biome.jsonc b/biome.jsonc index e43b87d228..190306f12e 100644 --- a/biome.jsonc +++ b/biome.jsonc @@ -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",