From 086ad98480d8898b610965bc23ef934173f9fdfc Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 15 Feb 2026 17:13:41 +0900 Subject: refactor: rename format script to fix namespace with lint auto-fix Add pnpm fix (runs fix:lint + fix:format), pnpm fix:lint (biome check --write), and rename pnpm format to pnpm fix:format for consistency with the existing check namespace convention. --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'package.json') diff --git a/package.json b/package.json index db840b7..88171cc 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,9 @@ "check": "pnpm check:ts && pnpm check:lint", "check:ts": "tsc --noEmit", "check:lint": "biome check .", - "format": "biome format --write .", + "fix": "pnpm fix:lint && pnpm fix:format", + "fix:lint": "biome check --write .", + "fix:format": "biome format --write .", "db:generate": "drizzle-kit generate", "db:migrate": "drizzle-kit migrate", "db:push": "drizzle-kit push", -- cgit v1.3-1-g0d28