Files
Mergely/git-conventional-commits.json
2022-01-19 21:46:43 +00:00

42 lines
909 B
JSON

{
"convention" : {
"commitTypes": [
"build",
"chore",
"ci",
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"merge"
],
"commitScopes": [],
"releaseTagGlobPattern": "v[0-9].*",
"issueRegexPattern": "(^|\\s)#\\d+(\\s|$)"
},
"changelog" : {
"commitTypes": [
"feat",
"fix",
"perf",
"merge"
],
"commitIgnoreRegexPattern": "^WIP ",
"headlines": {
"feat": "Features",
"fix": "Bug Fixes",
"perf": "Performance Improvements",
"merge": "Merged Branches",
"breakingChange": "BREAKING CHANGES"
},
"commitUrl": "https://github.com/wickedest/Mergely/commit/%commit%",
"commitRangeUrl": "https://github.com/wickedest/Mergely/compare/%from%...%to%?diff=split",
"issueUrl": "https://github.com/wickedest/Mergely/issues/%issue%"
}
}