From 6bdf3d3771ed840a6d402eb5a5c818d8aa9ff20f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 26 Oct 2025 13:15:31 +0000 Subject: [PATCH 1/2] Initial plan From 3ec3e1645042cd800c66b5ce1b688efa73a5f281 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 26 Oct 2025 13:20:59 +0000 Subject: [PATCH 2/2] Add CSS formatting support to Biome configuration Co-authored-by: ledsun <1079508+ledsun@users.noreply.github.com> --- biome.json | 8 ++++++++ dev/outer.css | 4 ++-- package.json | 3 +++ 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/biome.json b/biome.json index d8acdbc76..a13791a44 100644 --- a/biome.json +++ b/biome.json @@ -46,5 +46,13 @@ "indentWidth": 2, "lineWidth": 80 } + }, + "css": { + "formatter": { + "enabled": true, + "indentStyle": "space", + "indentWidth": 2, + "lineWidth": 80 + } } } diff --git a/dev/outer.css b/dev/outer.css index 7e0fbef19..46694b407 100644 --- a/dev/outer.css +++ b/dev/outer.css @@ -1,4 +1,4 @@ /* Emulate an outer css file */ p { - line-height:1.5em; -} \ No newline at end of file + line-height: 1.5em; +} diff --git a/package.json b/package.json index 1c612b90e..e4a972069 100644 --- a/package.json +++ b/package.json @@ -74,6 +74,9 @@ "*.json": [ "npx @biomejs/biome format --write" ], + "*.css": [ + "npx @biomejs/biome format --write" + ], "*.less": [ "npx @biomejs/biome format --write" ],