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
- Host: GitHub
- URL: https://github.com/snugug/emoji-commit-types
- Owner: Snugug
- Created: 2018-01-31T14:57:45.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-18T15:30:54.000Z (almost 8 years ago)
- Last Synced: 2025-05-02T11:03:11.121Z (about 1 year ago)
- Language: JavaScript
- Size: 7.81 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 |