Skip to content

Instantly share code, notes, and snippets.

@wgroenewold
Created June 10, 2020 13:49
Show Gist options
  • Save wgroenewold/48dd65415e6133868b4115c39aa088a9 to your computer and use it in GitHub Desktop.
Save wgroenewold/48dd65415e6133868b4115c39aa088a9 to your computer and use it in GitHub Desktop.
{
"devDependencies": {
"commitizen": "^4.1.2",
"cz-conventional-changelog": "3.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"maxHeaderWidth": 100,
"maxLineWidth": 100,
"defaultType": "feat",
"defaultScope": "",
"defaultSubject": "",
"defaultBody": "",
"defaultIssues": "",
"types": {
"feat": {
"description": "A new feature",
"title": "Features"
},
"fix": {
"description": "A bug fix",
"title": "Fixes"
},
"docs": {
"description": "Documentation only changes",
"title": "Documentation"
},
"style": {
"description": "Changes that do not affect the meaning of the code",
"title": "Style corrections"
},
"refactor": {
"description": "A code change that neither fixes a bug nor adds a feature",
"title": "Refactor"
},
"perf": {
"description": "A code change that improves performance",
"title": "Performance"
},
"test": {
"description": "Adding missing or correcting existing tests",
"title": "Tests"
},
"chore": {
"description": "Changes to the build process or auxiliary tools and libraries",
"title": "Chores"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment