From 897f22233810919ba01608bffbfa69f2bb926388 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 15 Feb 2026 16:58:47 +0900 Subject: refactor: rename lint/typecheck scripts to check namespace Consolidate typecheck and lint into a unified `pnpm check` command with `check:ts` and `check:lint` sub-commands. Update CI workflow to use the single check step and update docs accordingly. Co-Authored-By: Claude Opus 4.6 --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'package.json') diff --git a/package.json b/package.json index 3c1c63e..db840b7 100644 --- a/package.json +++ b/package.json @@ -13,9 +13,9 @@ "start": "node dist/server/index.js", "test": "vitest run", "test:watch": "vitest", - "typecheck": "tsc --noEmit", - "lint": "biome check .", - "lint:fix": "biome check --write .", + "check": "pnpm check:ts && pnpm check:lint", + "check:ts": "tsc --noEmit", + "check:lint": "biome check .", "format": "biome format --write .", "db:generate": "drizzle-kit generate", "db:migrate": "drizzle-kit migrate", -- cgit v1.3-1-g0d28