Verify Skill
Run quality checks for this repository.
Run All Checks
/verify runs the following in order (E2E not included):
- •
pnpm format:check- Format check - •
pnpm lint- ESLint - •
pnpm exec tsc --noEmit- Type check - •
pnpm test- Unit tests
Run Individual Checks
| Argument | Command |
|---|---|
format | pnpm format:check |
lint | pnpm lint |
type | pnpm exec tsc --noEmit |
test | pnpm test |
e2e | pnpm e2e |
fix | pnpm format && pnpm lint:fix |
Error Handling
- •Format errors: Auto-fix with
pnpm format - •Lint errors: Auto-fix where possible with
pnpm lint:fix - •Type errors: Manually fix the code
- •Test errors: Review and fix failing tests