-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy path.versionrc.json
More file actions
49 lines (49 loc) · 2.25 KB
/
.versionrc.json
File metadata and controls
49 lines (49 loc) · 2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"header": "# Changelog\n\nAll notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n",
"parserOpts": {
"headerPattern": "^(\\w*)(?:\\(([\\w\\$\\.\\-\\*\\s]*)\\))?[\\:\\s]+(.*)$",
"headerCorrespondence": ["type", "scope", "subject"]
},
"types": [
{ "type": "feat", "section": "Features" },
{ "type": "Feat", "section": "Features" },
{ "type": "feature", "section": "Features" },
{ "type": "Feature", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "Fix", "section": "Bug Fixes" },
{ "type": "docs", "section": "Documentation" },
{ "type": "Docs", "section": "Documentation" },
{ "type": "doc", "section": "Documentation" },
{ "type": "Doc", "section": "Documentation" },
{ "type": "chore", "section": "Chores" },
{ "type": "Chore", "section": "Chores" },
{ "type": "update", "section": "Updates" },
{ "type": "Update", "section": "Updates" },
{ "type": "add", "section": "Additions" },
{ "type": "Add", "section": "Additions" },
{ "type": "remove", "section": "Removals" },
{ "type": "Remove", "section": "Removals" },
{ "type": "improve", "section": "Improvements" },
{ "type": "Improve", "section": "Improvements" },
{ "type": "deploy", "section": "Deployment" },
{ "type": "Deploy", "section": "Deployment" },
{ "type": "refactor", "section": "Refactoring" },
{ "type": "Refactor", "section": "Refactoring" },
{ "type": "perf", "section": "Performance" },
{ "type": "test", "section": "Tests" },
{ "type": "build", "section": "Build System" },
{ "type": "ci", "section": "CI/CD" },
{ "type": "style", "section": "Styling" },
{ "type": "revert", "section": "Reverts" }
],
"preMajor": false,
"commitUrlFormat": "{{host}}/{{owner}}/{{repository}}/commit/{{hash}}",
"compareUrlFormat": "{{host}}/{{owner}}/{{repository}}/compare/{{previousTag}}...{{currentTag}}",
"issueUrlFormat": "{{host}}/{{owner}}/{{repository}}/issues/{{id}}",
"userUrlFormat": "{{host}}/{{user}}",
"releaseCommitMessageFormat": "chore(release): {{currentTag}}",
"issuePrefixes": ["#"],
"skip": {
"changelog": false
}
}