Last active
November 10, 2023 14:00
-
-
Save LeonardoZivieri/dee158c314121f4b89649db3b6b259b9 to your computer and use it in GitHub Desktop.
gitmoji-simple-commit-flow.json
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
{ | |
"gitmojis": [ | |
{ | |
"emoji": "π¦οΈ", | |
"entity": "F4E6;", | |
"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