See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
function numberToScale(number) { | |
const scales = [ | |
'', | |
'thousand', | |
'million', | |
'billion', | |
'trillion', | |
'quadrillion', | |
'quintillion', | |
'sextillion', |
The Conventional Commits specification is often used to standardize commit messages. The most common types are:
feat: New features or functionalities.
Example: feat: add user authentication module
fix: Bug fixes.
Example: fix: correct login validation error