mirror of
https://github.com/dnlbauer/dotfiles.git
synced 2026-09-10 21:45:30 +00:00
761 B
761 B
Check
Perform comprehensive code quality checks and tests. Do not make any code changes during this process.
Exception: Fixing lint errors, type errors, formatting issues and failing unit tests.
Common Checks Include
- Linting: Code style and syntax errors
- Type Checking: Type errors
- Unit Tests: Unit and integration tests
- Security Scan: Vulnerability scan
- Code Formatting: Style consistency
- Build Verification: Compilation errors
Process
- Run the check command.
- Analyze output for errors and warnings
- Fix issues in priority order:
- Build-breaking errors first
- Test failures
- Linting and type errors
- Warnings
- Re-run checks after applying a fix
- Continue until all checks pass