Last active
April 24, 2026 00:53
-
-
Save jonathanconway/0b5f0114a977008fecb0141079dfd273 to your computer and use it in GitHub Desktop.
VSCode Snippet - Conventional Commit Message
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "Conventional Commit Message": { | |
| "body": "${1|build,chore,ci,docs,feature,fix,performance,refactor,revert,style,test|}: ${2:ticket} ${3:message}", | |
| "description": "Conventional commit message in the format: <type>: TICKET-123 descriptive message" | |
| } | |
| } | |
| /** | |
| * $1: type | |
| * Source: https://github.com/conventional-changelog/commitlint/tree/master/%40commitlint/config-conventional | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment