Skip to content

Instantly share code, notes, and snippets.

@LeonardoZivieri
Last active November 10, 2023 14:00
Show Gist options
  • Save LeonardoZivieri/dee158c314121f4b89649db3b6b259b9 to your computer and use it in GitHub Desktop.
Save LeonardoZivieri/dee158c314121f4b89649db3b6b259b9 to your computer and use it in GitHub Desktop.
gitmoji-simple-commit-flow.json
{
"gitmojis": [
{
"emoji": "📦️",
"entity": "&#1F4E6;",
"code": ":package:",
"description": "Create a new build / version",
"name": "package",
"semver": "patch"
},
{
"emoji": "🔧",
"entity": "🔧",
"code": ":wrench:",
"description": "A code change that external user won't see (eg: change to .gitignore file or .prettierrc file)",
"name": "wrench",
"semver": "patch"
},
{
"emoji": "✨",
"entity": "✨",
"code": ":sparkles:",
"description": "Introduce new features.",
"name": "sparkles",
"semver": "minor"
},
{
"emoji": "🐛",
"entity": "🐛",
"code": ":bug:",
"description": "A bug fix",
"name": "bug",
"semver": "patch"
},
{
"emoji": "📝",
"entity": "📝",
"code": ":memo:",
"description": "Documentation related changes",
"name": "memo",
"semver": null
},
{
"emoji": "🩺",
"entity": "🩺",
"code": ":stethoscope:",
"description": "A code that neither fix bug nor adds a feature. (eg: You can use this when there is semantic changes like renaming a variable/ function name)",
"name": "stethoscope",
"semver": null
},
{
"emoji": "🚀",
"entity": "🚀",
"code": ":rocket:",
"description": "A code that improves performance",
"name": "rocket",
"semver": null
},
{
"emoji": "🎨",
"entity": "🎨",
"code": ":art:",
"description": "A code that is related to styling",
"name": "art",
"semver": null
},
{
"emoji": "✅",
"entity": "✅",
"code": ":white_check_mark:",
"description": "Adding new test or making changes to existing test",
"name": "white-check-mark",
"semver": null
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment