From 4a8d77c1a394c5d4f2a760efaf585bf2c8df4e0e Mon Sep 17 00:00:00 2001 From: icarus Date: Mon, 15 Sep 2025 06:38:33 +0800 Subject: [PATCH] style(biome): update ignore patterns and jsx quote style Update file ignore patterns from `/*` to `/**` for consistency Change jsxQuoteStyle from single to double quotes for alignment with project standards --- biome.jsonc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/biome.jsonc b/biome.jsonc index f88cf64773..0e4995f99c 100644 --- a/biome.jsonc +++ b/biome.jsonc @@ -16,20 +16,20 @@ "formatWithErrors": true, "includes": [ "**", - "!out/*", - "!**/dist/*", - "!build/*", - "!.yarn/*", - "!.github/*", - "!.husky/*", - "!.vscode/*", + "!out/**", + "!**/dist/**", + "!build/**", + "!.yarn/**", + "!.github/**", + "!.husky/**", + "!.vscode/**", "!*.yaml", "!*.yml", "!*.mjs", "!*.cjs", "!*.md", "!*.json", - "!src/main/integration/*" + "!src/main/integration/**" ], "indentStyle": "space", "indentWidth": 2, @@ -44,7 +44,7 @@ "attributePosition": "auto", "bracketSameLine": false, "bracketSpacing": true, - "jsxQuoteStyle": "single", + "jsxQuoteStyle": "double", "quoteProperties": "asNeeded", "quoteStyle": "single", "semicolons": "asNeeded",