Commitizen adapter for gitmoji.
cz-gitmoji allows you to easily use gitmojis in your commits using commitizen.
? Select the type of change you're committing:
šØ - :art: - Improving structure / format of the code.
ā”ļø - :zap: - Improving performance.
š„ - :fire: - Removing code or files.
āÆ š - :bug: - Fixing a bug.
š - :ambulance: - Critical hotfix.
āØ - :sparkles: - Introducing new features.
š - :memo: - Writing docs.
š - :rocket: - Deploying stuff.
š - :lipstick: - Updating the UI and style files.
š - :tada: - Initial commit.
ā
- :white_check_mark: - Adding tests.
š - :lock: - Fixing security issues.
š - :apple: - Fixing something on macOS.
š§ - :penguin: - Fixing something on Linux.
š - :checkered_flag: - Fixing something on Windows.
š¤ - :robot: - Fixing something on Android.
š - :green_apple: - Fixing something on iOS.
š - :bookmark: - Releasing / Version tags.
šØ - :rotating_light: - Removing linter warnings.
š§ - :construction: - Work in progress.
š - :green_heart: - Fixing CI Build.
ā¬ļø - :arrow_down: - Downgrading dependencies.
ā¬ļø - :arrow_up: - Upgrading dependencies.
š· - :construction_worker: - Adding CI build system.
š - :chart_with_upwards_trend: - Adding analytics or tracking code.
šØ - :hammer: - Refactoring code.
ā - :heavy_minus_sign: - Removing a dependency.
š³ - :whale: - Work about Docker.
ā - :heavy_plus_sign: - Adding a dependency.
š§ - :wrench: - Changing configuration files.
š - :globe_with_meridians: - Internationalization and localization.
āļø - :pencil2: - Fixing typos.
š© - :hankey: - Writing bad code that needs to be improved.
āŖ - :rewind: - Reverting changes.
š - :twisted_rightwards_arrows: - Merging branches.
š¦ - :package: - Updating compiled files or packages.
š½ - :alien: - Updating code due to external API changes.
š - :truck: - Moving or renaming files.
š - :page_facing_up: - Adding or updating license.
š„ - :boom: - Introducing breaking changes.
š± - :bento: - Adding or updating assets.
š - :ok_hand: - Updating code due to code review changes.
āæļø - :wheelchair: - Improving accessibility.
š” - :bulb: - Documenting source code.
š» - :beers: - Writing code drunkenly.
š¬ - :speech_balloon: - Updating text and literals.
š - :card_file_box: - Performing database related changes.
š - :loud_sound: - Adding logs.
š - :mute: - Removing logs.
Install
$ npm install --global cz-gitmoji
Set Globally
echo '{ "path": "cz-gitmoji" }' > ~/.czrc
This will set as default adapter for all your projects.
Usage
$ git cz
Customize
You can customize types for per project by adding a configuration section in your package.json
:
{
"config": {
"cz-gitmoji": {}
}
}
For example:
{
"config": {
"cz-gitmoji": {
"types": [
{
"name": "bad \tš© bad code",
"value": ":hankey:"
}
]
}
}
}