{ "types": { "refactor": { "description": "Changes which neither fix a bug nor add a feature" }, "fix": { "description": "Changes which patch a bug" }, "feat": { "description": "Changes which introduce a new feature" }, "build": { "description": "Changes which affect the build system or external dependencies.
Example scopes: gradle, yarn", "scopes": { "gradle": {}, "yarn": {} } }, "chore": { "description": "Changes which are not user-facing, such as intelliJ configuration files, gitignore or other non-code changes", "scopes": { "deps": { "description": "Changes which update dependencies" } } }, "style": { "description": "Changes which do not affect code logic, such as whitespaces, formatting, missing semicolons" }, "test": { "description": "Changes which add missing tests or fix existing ones" }, "docs": { "description": "Changes which affect documentation", "scopes": { "business": { "description": "Changes which update or add business documentation" } } }, "perf": { "description": "Changes which improve performance" }, "ci": { "description": "Changes which affect CI configuration files and scripts.
Example scopes: github-actions" }, "revert": { "description": "Changes which revert a previous commit" }, "wip": { "description": "Changes which are work in progress" } }, "footerTypes": [ { "name": "BREAKING-CHANGE", "description": "The commit introduces breaking API changes" }, { "name": "Closes", "description": "The commit closes issues or pull requests" }, { "name": "Implements", "description": "The commit implements features" }, { "name": "Author", "description": "The commit's author" }, { "name": "Co-authored-by", "description": "The specified person co-authored the commit's changes" }, { "name": "Signed-off-by", "description": "A signoff may certify that the committer has the rights to submit the work under the project's license or agrees to some contributor representation, such as a Developer Certificate of Origin" }, { "name": "Acked-by", "description": "The specified person liked the commit's changes" }, { "name": "Reviewed-by", "description": "The specified person reviewed and is completely satisfied with the commit's changes" }, { "name": "Tested-by", "description": "The specified person applied the commit's changes and found them to have the desired effect" }, { "name": "Refs", "description": "The commit references another commit by its hash ID.
For multiple hash IDs, use a comma as separator" } ] }