Skip to content

Instantly share code, notes, and snippets.

@Diogo-Rossi
Created January 8, 2024 13:32
Show Gist options
  • Save Diogo-Rossi/79f39b5982c7c6eb8a32c5871c926b75 to your computer and use it in GitHub Desktop.
Save Diogo-Rossi/79f39b5982c7c6eb8a32c5871c926b75 to your computer and use it in GitHub Desktop.
vscode-git-commit template by Diogo-Rossi
{
"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