Skip to content

Commit a0f4e96

Browse files
committed
feat: add initial version configuration file with commit message formats
1 parent 8957e0d commit a0f4e96

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

.versionrc.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"types": {
3+
"feat": {
4+
"section": "Features"
5+
},
6+
"fix": {
7+
"section": "Bug Fixes"
8+
},
9+
"perf": {
10+
"section": "Performance Improvements",
11+
"hidden": true
12+
},
13+
"docs": {
14+
"section": "Documentation",
15+
"hidden": true
16+
},
17+
"style": {
18+
"section": "Styles",
19+
"hidden": true
20+
},
21+
"refactor": {
22+
"section": "Code Refactoring",
23+
"hidden": true
24+
},
25+
"test": {
26+
"section": "Tests",
27+
"hidden": true
28+
},
29+
"build": {
30+
"section": "Build System",
31+
"hidden": true
32+
},
33+
"ci": {
34+
"section": "Continuous Integration",
35+
"hidden": true
36+
},
37+
"chore": {
38+
"section": "Chores",
39+
"hidden": true
40+
}
41+
},
42+
"commitUrlFormat": "https://github.com/andrewmolyuk/eslint-plugin-vue-modular/commit/{{hash}}",
43+
"compareUrlFormat": "https://github.com/andrewmolyuk/eslint-plugin-vue-modular/compare/{{previousTag}}...{{currentTag}}",
44+
"issueUrlFormat": "https://github.com/andrewmolyuk/eslint-plugin-vue-modular/issues/{{id}}",
45+
"userUrlFormat": "https://github.com/{{user}}",
46+
"releaseCommitMessageFormat": "chore(release): {{currentTag}}",
47+
"issuePrefixes": ["#"],
48+
"noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES"]
49+
}

0 commit comments

Comments
 (0)