aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-02-15 16:58:47 +0900
committernsfisis <nsfisis@gmail.com>2026-02-15 16:58:47 +0900
commit897f22233810919ba01608bffbfa69f2bb926388 (patch)
treecb6a140e4b818921386e8b2a0a79354e1359a5f6 /README.md
parent6e6b83173e35b0e8351e558ae685e226d9d44636 (diff)
downloadkioku-897f22233810919ba01608bffbfa69f2bb926388.tar.gz
kioku-897f22233810919ba01608bffbfa69f2bb926388.tar.zst
kioku-897f22233810919ba01608bffbfa69f2bb926388.zip
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 <noreply@anthropic.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 86e6cf6..cfdf165 100644
--- a/README.md
+++ b/README.md
@@ -65,9 +65,9 @@ pnpm dev:client # Frontend dev server (port 5173)
| `pnpm build` | Build both server and client |
| `pnpm start` | Start production server |
| `pnpm test` | Run tests |
-| `pnpm typecheck` | Run TypeScript type checking |
-| `pnpm lint` | Lint code with Biome |
-| `pnpm lint:fix` | Lint and auto-fix issues |
+| `pnpm check` | Run all checks (TypeScript + lint) |
+| `pnpm check:ts` | Run TypeScript type checking |
+| `pnpm check:lint` | Lint code with Biome |
| `pnpm db:migrate` | Run database migrations |
| `pnpm db:studio` | Open Drizzle Studio (database GUI) |
| `pnpm user:add` | Add a new user (interactive) |