Created
January 8, 2024 13:32
-
-
Save Diogo-Rossi/79f39b5982c7c6eb8a32c5871c926b75 to your computer and use it in GitHub Desktop.
vscode-git-commit template by Diogo-Rossi
This file contains 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
{ | |
"vscodeGitCommit.template": [ "{type}: {message}" ], | |
"vscodeGitCommit.variables": { | |
"type": [ | |
{ | |
"label": "π§ wip", | |
"detail": "Work in progress." | |
}, | |
{ | |
"label": "__π private", | |
"detail": "Add/edit private stuff." | |
}, | |
{ | |
"label": "π¨ chore", | |
"detail": "Improving structure / format of the code." | |
}, | |
{ | |
"label": "π new", | |
"detail": "Initial (NEW) commit or new scripts." | |
}, | |
{ | |
"label": "β¨ feat", | |
"detail": "Introducing new features." | |
}, | |
{ | |
"label": "π fix", | |
"detail": "Fixing a bug." | |
}, | |
{ | |
"label": "π docs", | |
"detail": "To edit documentation" | |
}, | |
{ | |
"label": "π· build", | |
"detail": "Changes that affect the build system." | |
}, | |
{ | |
"label": "β»οΈ refactor", | |
"detail": "A code change that neither fixes a bug nor adds a feature" | |
}, | |
{ | |
"label": "βͺ revert", | |
"detail": "Reverting changes." | |
}, | |
{ | |
"label": "π style", | |
"detail": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)." | |
}, | |
{ | |
"label": "β‘οΈ perf", | |
"detail": "Improving performance" | |
}, | |
{ | |
"label": "βοΈ typo", | |
"detail": "Fixing typos." | |
}, | |
{ | |
"label": "β test", | |
"detail": "Adding missing tests or correcting existing tests." | |
}, | |
{ | |
"label": "π·οΈ typing", | |
"detail": "Adding or updating types (Flow, TypeScript)." | |
}, | |
{ | |
"label": "π₯ change!", | |
"detail": "Introducing BREAKING CHANGES." | |
}, | |
{ | |
"label": "π release", | |
"detail": "Deploying stuff to release." | |
}, | |
{ | |
"label": "π¦ compiled", | |
"detail": "Updating compiled files or packages." | |
}, | |
{ | |
"label": "β¬οΈ dependencies", | |
"detail": "Upgrading dependencies." | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment