// Adapted from https://github.com/commitizen/conventional-commit-types/blob/master/index.json type "feat" { title "Features" description "A new feature" } type "fix" { title "Bug Fixes" description "A bug fix" } type "docs" { title "Documentation" description "Documentation only changes" } type "style" { title "Styles" description "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)" } type "refactor" { title "Code Refactoring" description "A code change that neither fixes a bug nor adds a feature" } type "perf" { title "Performance Improvements" description "A code change that improves performance" } type "test" { title "Tests" description "Adding missing tests or correcting existing tests" } type "build" { title "Builds" description "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)" } type "ci" { title "Continuous Integrations" description "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)" } type "chore" { title "Chores" description: "Other changes that don't modify src or test files" } type "revert" { title "Reverts" description "Reverts a previous commit" }