Conventional Commits
See how a minor change to our commit message format can make us a better programmers.
Format: <type>(<scope>): <subject>
feat(scope)!: add hat wobble
^--^ ^---^ ^ ^------------^
| | | |
| | | +-> Summary in present tense.
| | |
| | +-> Optional breaking change notation.
| |
| +-> Optional scope
|
+-------> Type: chore, docs, feat, fix, refactor, style, test or revert.
feat
: new feature for the user, not a new feature for build scriptfix
: bug fix for the user, not a fix to a build scriptdocs
: changes to the documentationstyle
: formatting, missing semi colons, etc; no production code changerefactor
: refactoring production code, eg. renaming a variabletest
: adding missing tests, refactoring tests; no production code changechore
: updating grunt tasks etc; no production code changerevert
: reverting existing comments; with references of the reverts in footer.