๐ฌ DevOps
Git Commit Message Linter
Validate commit messages against the Conventional Commits specification. Checks type, scope, subject length, body format and breaking change markers.
๐ How to Use
โผ1
Type or paste a commit message into the input
2
Validation runs live โ errors and warnings appear instantly
3
Click any type chip to insert a template (feat, fix, docs, etc.)
๐ Examples
Valid
feat(auth): add OAuth2 login flow
โ
Valid โ type: feat, scope: auth, subject: add OAuth2 login flow
Invalid
Updated stuff
โ Missing type prefix, subject starts with uppercase
๐ Commit Message
โก Quick Types
๐ Conventional Commits Format
<type>(<scope>): <subject>
<body>
<footer>
BREAKING CHANGE: <description>