conventional-commits-cli
Version:
A CLI that enables automatic Conventional Git commits
17 lines (13 loc) • 845 B
Markdown
# conventional-commits-cli
CoCoCLI is a command line interface that makes automatic conventional Git changes in your code.
## What are Conventional Commits
Conventional Commits is a set of guidelines to make the commit messages more readable for the human.
- build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
- ci: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
- docs: Documentation only changes
- feat: A new feature
- fix: A bug fix
- perf: A code change that improves performance
- refactor: A code change that neither fixes a bug nor adds a feature
- style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
- test: Adding missing tests or correcting existing tests