Difference between revisions of "StandardCommitMessages"

From Coder Merlin
(Created page with "== Format == <pre> <type>[optional scope]: <description> </pre> == Types == ;build: Changes to the build process or auxiliary tools and libraries such as documentation genera...")
 
Line 13: Line 13:
;style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
;style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
;test: Adding missing or correcting existing tests
;test: Adding missing or correcting existing tests
== Breaking Changes ==
Breaking changes should be emphasized with the text BREAKING CHANGE:


== References ==
== References ==

Revision as of 16:01, 1 May 2020

Within these castle walls be forged Mavens of Computer Science ...
— Merlin, The Coder

Format[edit]

<type>[optional scope]: <description>

Types[edit]

build
Changes to the build process or auxiliary tools and libraries such as documentation generation
docs
Documentation only changes
feat
Implementation of a new feature in code
fix
Correction of an error in code
perf
Improving performance
refactor
A code change that neither fixes a bug nor adds a feature with the primary goal of increasing code clarity, readability, etc.
style
Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
test
Adding missing or correcting existing tests

Breaking Changes[edit]

Breaking changes should be emphasized with the text BREAKING CHANGE:

References[edit]