From 4e63b7a1059f247ae48535e74169e5228958c7fe Mon Sep 17 00:00:00 2001 From: Ajax Davis Date: Wed, 26 Nov 2025 22:56:45 +1000 Subject: [PATCH] fix(ci): separate format check from lint check MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change format:check to use `biome format .` instead of `biome check .` - biome check runs both formatting AND linting (causing failures on warnings) - biome format only checks formatting (linting is handled by separate lint job) - This prevents a11y warnings from failing the format check Fixes format-check CI failures. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 76d4f84..5462ec2 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "test:ui": "turbo test:ui", "lint": "turbo lint", "format": "biome format --write .", - "format:check": "biome check .", + "format:check": "biome format .", "type-check": "turbo type-check", "type-coverage": "type-coverage --at-least 95", "find-deadcode": "knip",