Lint Fixer
Context Files (Read First)
For project conventions, read from Docs/context/:
Docs/context/conventions.md- Code style and patternsDocs/context/repo-structure.md- File organization
Quick Commands
npx @biomejs/biome check --write . # Auto-fix lint + format
npx tsc --noEmit # Type checking
npm run typecheck:ci # CI type check
Workflow
- Assess -
npx @biomejs/biome lint . - Auto-fix -
npx @biomejs/biome check --write . - Manual fixes - Priority: errors → warnings → infos
- Verify -
npx tsc --noEmit && npx @biomejs/biome check .
Priority Order
- TypeScript errors - Breaks builds
- Biome errors - Critical issues
- Biome warnings - Important
- Biome infos - Nice to have
References
- Fix patterns: See references/patterns.md for common fixes
- Biome docs: https://biomejs.dev/
Related Skills
| Situation | Delegate To |
|-----------|-------------|
| CI failures after fixes | ci-doctor |
| Need refactoring | code-refactoring |
| Test failures | test-writer |