From 2bdf31a139e30c36478d6b9618e3fb95814c9306 Mon Sep 17 00:00:00 2001 From: Shuowei Li Date: Mon, 5 Jan 2026 21:30:18 +0000 Subject: [PATCH] feat(biome): Configure biome to use 2 spaces and single quotes --- biome.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 biome.json diff --git a/biome.json b/biome.json new file mode 100644 index 0000000000..d30c8687a4 --- /dev/null +++ b/biome.json @@ -0,0 +1,16 @@ +{ + "formatter": { + "indentStyle": "space", + "indentWidth": 2 + }, + "javascript": { + "formatter": { + "quoteStyle": "single" + } + }, + "css": { + "formatter": { + "quoteStyle": "single" + } + } +}