-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.versionrc.json
More file actions
31 lines (31 loc) · 1016 Bytes
/
.versionrc.json
File metadata and controls
31 lines (31 loc) · 1016 Bytes
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
{
"types": [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "chore", "hidden": true},
{"type": "docs", "section": "Documentation"},
{"type": "style", "hidden": true},
{"type": "refactor", "section": "Code Refactoring"},
{"type": "perf", "section": "Performance Improvements"},
{"type": "test", "section": "Tests"},
{"type": "build", "section": "Build System"},
{"type": "ci", "section": "Continuous Integration"}
],
"commitUrlFormat": "https://github.com/aRustyDev/pre-commit-hooks/commit/{{hash}}",
"compareUrlFormat": "https://github.com/aRustyDev/pre-commit-hooks/compare/{{previousTag}}...{{currentTag}}",
"releaseCommitMessageFormat": "chore(release): {{currentTag}}",
"bumpFiles": [
{
"filename": "VERSION",
"type": "plain-text"
},
{
"filename": "package.json",
"type": "json"
},
{
"filename": "setup.py",
"updater": "scripts/update-setup-py.js"
}
]
}