Dev Tools
#conventional-commits
#commit
#git
#ci
Conventional Commit Message
Validates git commit messages adhering to the Conventional Commits specification.
✓ Git hook message validation✓ CI release automation gates✓ Developer workflow enforcement
✓ Valid Examples
- feat(auth): add login page
- fix!: resolve database deadlock
- chore: bump package version to 1.0.1
- docs(readme): add installation guide
✗ Invalid Examples
- add login page
- fixed bugs
- feat(): missing scope content
- fix(scope):
Usage & Integration
Validate Conventional Commit Message natively in your backend or frontend without copying regex strings.
Node / Edge
import { validate } from '@regexto/validators';
validate('conventional-commit', '...');Python
from regexto_validators import validate
validate("conventional-commit", "...")Go
import "github.com/regex-to/validators-go"
valid, err := validators.Validate("conventional-commit", "...")PHP
use RegexTo\Validators\Validator;
Validator::validate('conventional-commit', '...');Rust
use regexto_validators::validate;
let is_valid = validate("conventional-commit", "...").unwrap();