This directory contains git hooks for maintaining code quality and consistency.
Validates commit messages follow Conventional Commits format.
Format: type(scope): description
Allowed types:
- feat: New feature
- fix: Bug fix
- docs: Documentation changes
- chore: Maintenance tasks
- refactor: Code restructuring
- test: Test additions/changes
- perf: Performance improvements
- ci: CI/CD changes
- revert: Revert previous commit
- style: Code style changes
- build: Build system changes
Examples:
feat(channels): add MPSC supportfix(async): correct polling timeoutdocs: update README performance numbers
Hooks are automatically active when you clone the repository. If you need to reinstall:
chmod +x .git/hooks/commit-msgNot recommended, but possible with:
git commit --no-verify -m "your message"