๐Ÿ’ฌ 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>