Last active
March 2, 2021 20:54
-
-
Save chadly/3ece91e4f965ef962ec0cd7c411ea3a8 to your computer and use it in GitHub Desktop.
sgc config file: https://github.com/JPeer264/node-semantic-git-commit-cli
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"emoji": true, | |
"lowercaseTypes": true, | |
"endWithDot": false, | |
"types": [ | |
{ | |
"emoji": "π§", | |
"type": "Chore", | |
"description": "Changes that affect the build system or external dependencies and moving files", | |
"argKeys": [ | |
"c", | |
"chore" | |
] | |
}, | |
{ | |
"emoji": "π·", | |
"type": "CI", | |
"description": "Changes to our CI configuration files and scripts", | |
"argKeys": [ | |
"ci" | |
] | |
}, | |
{ | |
"emoji": "π", | |
"type": "Docs", | |
"description": "Documentation only changes", | |
"argKeys": [ | |
"d", | |
"docs" | |
] | |
}, | |
{ | |
"emoji": "β¨", | |
"type": "Feat", | |
"description": "New feature", | |
"argKeys": [ | |
"f", | |
"feat", | |
"feature" | |
] | |
}, | |
{ | |
"emoji": "π", | |
"type": "Fix", | |
"description": "Bug fix", | |
"argKeys": [ | |
"fi", | |
"fix", | |
"bug" | |
] | |
}, | |
{ | |
"emoji": "β‘οΈ", | |
"type": "Perf", | |
"description": "Code change that improves performance", | |
"argKeys": [ | |
"p", | |
"perf", | |
"performance" | |
] | |
}, | |
{ | |
"emoji": "β»οΈ", | |
"type": "Refactor", | |
"description": "Code change that neither fixes a bug nor adds a feature", | |
"argKeys": [ | |
"r", | |
"refactor" | |
] | |
}, | |
{ | |
"emoji": "π¨", | |
"type": "Style", | |
"description": "Changes that do not affect the meaning of the code", | |
"argKeys": [ | |
"s", | |
"style" | |
] | |
}, | |
{ | |
"emoji": "π§ͺ", | |
"type": "Test", | |
"description": "Adding missing tests or correcting existing tests", | |
"argKeys": [ | |
"t", | |
"test" | |
] | |
}, | |
{ | |
"emoji": "π§", | |
"type": "WIP", | |
"description": "Work in progress", | |
"argKeys": [ | |
"w", | |
"wip" | |
] | |
}, | |
{ | |
"emoji": "π¬", | |
"type": "Text", | |
"description": "Add or update text and literals", | |
"argKeys": [ | |
"t", | |
"txt" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment