From 8d12ea96114b8bb49d6c14c31e8f34bf04c746c3 Mon Sep 17 00:00:00 2001 From: icarus Date: Mon, 15 Sep 2025 07:09:57 +0800 Subject: [PATCH] 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 --- biome.jsonc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/biome.jsonc b/biome.jsonc index 190306f12e..907104252d 100644 --- a/biome.jsonc +++ b/biome.jsonc @@ -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",