From 865a9507aad7cf107f1d992e573b3458d957df69 Mon Sep 17 00:00:00 2001 From: icarus Date: Mon, 15 Sep 2025 06:54:56 +0800 Subject: [PATCH] style: change quote styles in biome.jsonc to use single quotes for JSX and double quotes for JS --- biome.jsonc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/biome.jsonc b/biome.jsonc index 6ee37acc91..44cb48bd09 100644 --- a/biome.jsonc +++ b/biome.jsonc @@ -45,9 +45,9 @@ "attributePosition": "auto", "bracketSameLine": false, "bracketSpacing": true, - "jsxQuoteStyle": "double", + "jsxQuoteStyle": "single", "quoteProperties": "asNeeded", - "quoteStyle": "single", + "quoteStyle": "double", "semicolons": "asNeeded", "trailingCommas": "none" }