Code Quality Checks
Run code quality checks after making code changes.
Commands
bash
# Full check (type checking + linting) ./start.sh check # Type checking only ./start.sh typecheck # Linting only ./start.sh lint # Linting with auto-fix ./start.sh lint-fix
Workflow
- •Make code changes
- •Run
./start.sh check - •If lint errors can be auto-fixed, run
./start.sh lint-fix - •Fix remaining errors manually
- •Re-run check to verify