chore: add stats lint/check wiring for CI

This commit is contained in:
2026-03-16 01:54:25 -07:00
parent 64e9821e7a
commit 77c35c770d
4 changed files with 23 additions and 3 deletions

View File

@@ -26,6 +26,12 @@
"format:check": "prettier --check .",
"format:src": "bash scripts/prettier-scope.sh --write",
"format:check:src": "bash scripts/prettier-scope.sh --check",
"format:stats": "bun x prettier --write stats/index.html stats/package.json stats/src stats/tsconfig.json stats/vite.config.ts",
"format:check:stats": "bun x prettier --check stats/index.html stats/package.json stats/src stats/tsconfig.json stats/vite.config.ts",
"typecheck:stats": "cd stats && bun x tsc --noEmit -p tsconfig.json",
"lint:stats": "bun run format:check:stats",
"lint:stats:typecheck": "bun run typecheck:stats",
"lint": "bun run lint:stats",
"docs:dev": "bun run --cwd docs-site docs:dev",
"docs:build": "bun run --cwd docs-site docs:build",
"docs:preview": "bun run --cwd docs-site docs:preview",