An open API service indexing awesome lists of open source software.

https://github.com/snugug/emoji-commit-types

Conventional Commit Types, but Emoji
https://github.com/snugug/emoji-commit-types

Last synced: about 1 year ago
JSON representation

Conventional Commit Types, but Emoji

Awesome Lists containing this project

README

          

# emoji-commit-types

List of Emoji commit types, for semantic releases, commit linting, and great profit.

## Emoji

| Emoji | Raw Emoji | Title | Description | Level |
| :----: | :-------: | :---: | :--------- | :---: |
| :boom: | `:boom:` | Breaking Change | A code change that results in backwards-incompatible code | major |
| :new: | `:new:` | Feature | A new feature | minor |
| :bug: | `:bug:` | Bug Fixes | A bug fix | patch |
| :memo: | `:memo:` | Documentation | Documentation only changes | patch |
| :art: | `:art:` | Code Styles | Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) | patch |
| :gem: | `:gem:` | User Styles | Changes that affect the user styling but not functionality | minor |
| :dizzy: | `:dizzy:` | Code Refactoring| A code change that neither fixes a bug nor adds a feature | patch |
| :racehorse: | `:racehorse:` | Performance Improvements | A code change that improves performance | minor |
| :white_check_mark: | `:white_check_mark:` | Tests | Adding missing tests or correcting existing tests | patch |
| :wrench: | `:wrench:` | Builds | Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm) | patch |
| :green_heart: | `:green_heart:` | CI/CD | Changes to our CI/CD configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) | patch |
| :nut_and_bolt: | `:nut_and_bolt:` | Chores | Other changes that don't modify source or test files | patch |
| :crystal_ball: | `:crystal_ball:` | Experiments | Experimental change to the codebase that may be changed later | patch |
| :lock: | `:lock:` | Security Improvements | A code change that improves security | minor |
| :fire: | `:fire:` | Code Removal | Changes that have the net result of removing unneeded code but does not affect functionality | minor |
| :shirt: | `:shirt:` | Nitpick Fixes | A code change that fixes nitpick issues (like linting) | patch |