type(scope?): subject
build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)chore: add something without touching production code (Eg: update npm dependencies)ci: Changes to our CI configuration files and scripts (example scopes: Gitlab CI, Circle, BrowserStack, SauceLabs)docs: Documentation only changesfeat: A new featurefix: A bug fixperf: A code change that improves performancerefactor: A code change that neither fixes a bug nor adds a featurerevert: Reverts a previous commitstyle: Changes that do not affect the meaning of the code (Eg: adding white-space, formatting, missing semi-colons, etc)test: Adding missing tests or correcting existing tests
Example:
$ git commit -m "feat(scope): add scope"$ git commit -m "chore: lint commit message"