Commit message guidelines
Last updated
Was this helpful?
Last updated
Was this helpful?
Your contributions will be rejected if you won't follow this guideline.
The commit contains the following structural elements, to communicate intent to the consumers of our libraries:
fix: a commit of the type fix
patches a bug in your codebase (this correlates with PATCH
in Semantic Versioning).
feat: a commit of the type feat
introduces a new feature to the codebase (this correlates with MINOR
in Semantic Versioning).
BREAKING CHANGE: a commit that appends a !
after the type/scope, introduces a breaking API change (correlating with MAJOR
in Semantic Versioning). A BREAKING CHANGE can be part of commits of any type.
other types that are supported:
build:
chore:
ci:
docs:
style:
refactor:
perf:
test:
tl;dr: https://www.conventionalcommits.org/examples
!
to draw attention to breaking change