Skip to content

Instantly share code, notes, and snippets.

@btxkenshin
Forked from leohxj/.cz-config.js
Last active April 19, 2019 03:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save btxkenshin/7f7c12b02a9940abcbd9b4bb4b04f22f to your computer and use it in GitHub Desktop.
Save btxkenshin/7f7c12b02a9940abcbd9b4bb4b04f22f to your computer and use it in GitHub Desktop.
cz-customizable with emoji
'use strict';
module.exports = {
types: [
{
value: 'πŸ’ͺ wp',
name : 'πŸ’ͺ wp: Work in progress, mostly use in subfeatures'
},
{
value: '✨ feature',
name : '✨ feature: A new feature'
},
{
value: 'πŸ› fix_bug',
name : 'πŸ› fix_bug: A bug fix'
},
{
value: '🐞 fix_jira',
name : '🐞 fix_jira: A issue fix of jira'
},
{
value: 'πŸš‘ fix_critical',
name : 'πŸš‘ fix_critical: Critical bugfix'
},
{
value: '🎨 art',
name : '🎨 art: Improving structure / Code Style: format of the code / Removing code or files'
},
{
value: 'πŸ›  refactor',
name : 'πŸ›  refactor: A code change that neither fixes a bug nor adds a feature'
},
{
value: 'πŸ”– bookmark',
name : 'πŸ”– bookmark: Releasing / Version tags / Deploying stuff'
},
{
value: 'πŸ“š docs',
name : 'πŸ“š docs: Documentation only changes'
},
{
value: 'πŸ—― chore',
name : 'πŸ—― chore: Other Changes that don\'t modify src or test files. Such as updating fastlane / Build tasks / Adding or updating a .gitignore file'
},
{
value: 'πŸ“¦ pod',
name : 'πŸ“¦ pod: Changes of CocoaPods'
},
{
value: 'βͺ revert',
name : 'βͺ revert: Revert to a commit'
}
],
scopes: ["ui", "refactor"],
allowCustomScopes: true,
allowBreakingChanges: ["feature", "fix_bug"]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment