Created
March 14, 2022 15:52
-
-
Save davejtoews/6f5f20c96d99a2791aff4fe64954308c to your computer and use it in GitHub Desktop.
Custom Commitizen config
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
{ | |
"path": "cz-emoji", | |
"config": { | |
"cz-emoji": { | |
"symbol": true, | |
"types": [ | |
{ | |
"emoji": "π¨", | |
"code": ":art:", | |
"description": "Improving structure / format of the code.", | |
"name": "style" | |
}, | |
{ | |
"emoji": "β‘οΈ", | |
"code": ":zap:", | |
"description": "Improving performance.", | |
"name": "perf" | |
}, | |
{ | |
"emoji": "π₯", | |
"code": ":fire:", | |
"description": "Removing code or files.", | |
"name": "prune" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":bug:", | |
"description": "Fixing a bug.", | |
"name": "fix" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":ambulance:", | |
"description": "Critical hotfix.", | |
"name": "quickfix" | |
}, | |
{ | |
"emoji": "β¨", | |
"code": ":sparkles:", | |
"description": "Introducing new features.", | |
"name": "feature" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":pencil:", | |
"description": "Writing docs.", | |
"name": "docs" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":lipstick:", | |
"description": "Updating the UI and style files.", | |
"name": "ui" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":tada:", | |
"description": "Initial commit.", | |
"name": "init" | |
}, | |
{ | |
"emoji": "β ", | |
"code": ":white_check_mark:", | |
"description": "Adding tests.", | |
"name": "test" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":lock:", | |
"description": "Fixing security issues.", | |
"name": "security" | |
}, | |
{ | |
"emoji": "π§", | |
"code": ":compass:", | |
"description": "Fixing something in Safari.", | |
"name": "safari" | |
}, | |
{ | |
"emoji": "π¦", | |
"code": ":fox:", | |
"description": "Fixing something in Firefox.", | |
"name": "firefox" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":cyclone:", | |
"description": "Fixing something in Edge or Explorer.", | |
"name": "edge" | |
}, | |
{ | |
"emoji": "π€", | |
"code": ":robot:", | |
"description": "Fixing something in Chrome.", | |
"name": "chrome" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":bookmark:", | |
"description": "Releasing / Version tags.", | |
"name": "release" | |
}, | |
{ | |
"emoji": "π¨", | |
"code": ":rotating_light:", | |
"description": "Removing linter warnings.", | |
"name": "lint" | |
}, | |
{ | |
"emoji": "π§", | |
"code": ":construction:", | |
"description": "Work in progress.", | |
"name": "wip" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":green_heart:", | |
"description": "Fixing CI Build.", | |
"name": "fix-ci" | |
}, | |
{ | |
"emoji": "β¬οΈ", | |
"code": ":arrow_down:", | |
"description": "Downgrading dependencies.", | |
"name": "downgrade" | |
}, | |
{ | |
"emoji": "β¬οΈ", | |
"code": ":arrow_up:", | |
"description": "Upgrading dependencies.", | |
"name": "upgrade" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":pushpin:", | |
"description": "Pinning dependencies to specific versions.", | |
"name": "pushpin" | |
}, | |
{ | |
"emoji": "π·", | |
"code": ":construction_worker:", | |
"description": "Adding CI build system.", | |
"name": "ci" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":chart_with_upwards_trend:", | |
"description": "Adding analytics or tracking code.", | |
"name": "analytics" | |
}, | |
{ | |
"emoji": "β»οΈ", | |
"code": ":recycle:", | |
"description": "Refactoring code.", | |
"name": "refactoring" | |
}, | |
{ | |
"emoji": "π³", | |
"code": ":whale:", | |
"description": "Work about Docker.", | |
"name": "docker" | |
}, | |
{ | |
"emoji": "β", | |
"code": ":heavy_plus_sign:", | |
"description": "Adding a dependency.", | |
"name": "dep-add" | |
}, | |
{ | |
"emoji": "β", | |
"code": ":heavy_minus_sign:", | |
"description": "Removing a dependency.", | |
"name": "dep-rm" | |
}, | |
{ | |
"emoji": "π§", | |
"code": ":wrench:", | |
"description": "Changing configuration files.", | |
"name": "config" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":globe_with_meridians:", | |
"description": "Internationalization and localization.", | |
"name": "i18n" | |
}, | |
{ | |
"emoji": "βοΈ", | |
"code": ":pencil2:", | |
"description": "Fixing typos.", | |
"name": "typo" | |
}, | |
{ | |
"emoji": "π©", | |
"code": ":poop:", | |
"description": "Writing bad code that needs to be improved.", | |
"name": "poo" | |
}, | |
{ | |
"emoji": "βͺ", | |
"code": ":rewind:", | |
"description": "Reverting changes.", | |
"name": "revert" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":twisted_rightwards_arrows:", | |
"description": "Merging branches.", | |
"name": "merge" | |
}, | |
{ | |
"emoji": "π¦", | |
"code": ":package:", | |
"description": "Updating compiled files or packages.", | |
"name": "dep-up" | |
}, | |
{ | |
"emoji": "π½", | |
"code": ":alien:", | |
"description": "Updating code due to external API changes.", | |
"name": "compat" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":truck:", | |
"description": "Moving or renaming files.", | |
"name": "mv" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":page_facing_up:", | |
"description": "Adding or updating license.", | |
"name": "license" | |
}, | |
{ | |
"emoji": "π₯", | |
"code": ":boom:", | |
"description": "Introducing breaking changes.", | |
"name": "breaking" | |
}, | |
{ | |
"emoji": "π±", | |
"code": ":bento:", | |
"description": "Adding or updating assets.", | |
"name": "assets" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":ok_hand:", | |
"description": "Updating code due to code review changes.", | |
"name": "review" | |
}, | |
{ | |
"emoji": "βΏοΈ", | |
"code": ":wheelchair:", | |
"description": "Improving accessibility.", | |
"name": "access" | |
}, | |
{ | |
"emoji": "π‘", | |
"code": ":bulb:", | |
"description": "Documenting source code.", | |
"name": "docs-code" | |
}, | |
{ | |
"emoji": "π»", | |
"code": ":beers:", | |
"description": "Writing code drunkenly.", | |
"name": "beer" | |
}, | |
{ | |
"emoji": "π¬", | |
"code": ":speech_balloon:", | |
"description": "Updating text and literals.", | |
"name": "texts" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":card_file_box:", | |
"description": "Performing database related changes.", | |
"name": "db" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":loud_sound:", | |
"description": "Adding logs.", | |
"name": "log-add" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":mute:", | |
"description": "Removing logs.", | |
"name": "log-rm" | |
}, | |
{ | |
"emoji": "πΈ", | |
"code": ":children_crossing:", | |
"description": "Improving user experience / usability.", | |
"name": "ux" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":building_construction:", | |
"description": "Making architectural changes.", | |
"name": "arch" | |
}, | |
{ | |
"emoji": "π±", | |
"code": ":iphone:", | |
"description": "Working on responsive design.", | |
"name": "iphone" | |
}, | |
{ | |
"emoji": "π€‘", | |
"code": ":clown_face:", | |
"description": "Mocking things.", | |
"name": "clown-face" | |
}, | |
{ | |
"emoji": "π₯", | |
"code": ":egg:", | |
"description": "Adding an easter egg.", | |
"name": "egg" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":see_no_evil:", | |
"description": "Adding or updating a .gitignore file.", | |
"name": "see-no-evil" | |
}, | |
{ | |
"emoji": "β", | |
"code": ":alembic:", | |
"description": "Experimenting new things.", | |
"name": "experiment" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":mag:", | |
"description": "Improving SEO.", | |
"name": "seo" | |
}, | |
{ | |
"emoji": "π©", | |
"code": ":triangular_flag_on_post:", | |
"description": "Adding, updating, or removing feature flags.", | |
"name": "flags" | |
}, | |
{ | |
"emoji": "π«", | |
"code": ":dizzy:", | |
"description": "Adding or updating animations and transitions.", | |
"name": "animation" | |
}, | |
{ | |
"emoji": "ποΈ", | |
"code": ":wastebasket:", | |
"description": "Deprecate code that needs to be cleaned up.", | |
"name": "cleanup" | |
}, | |
{ | |
"emoji": "π", | |
"code": ":passport_control:", | |
"description": "Work on code related to authorization, roles and permissions.", | |
"name": "auth" | |
}, | |
{ | |
"emoji": "π©Ή", | |
"code": ":adhesive_bandage:", | |
"description": "Simple fix for a non-critical issue.", | |
"name": "simple" | |
}, | |
{ | |
"emoji": "β°οΈ", | |
"code": ":coffin:", | |
"description": "Remove dead code.", | |
"name": "dead" | |
} | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment