forked from unchained-capital/caravan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cz-config.js
61 lines (50 loc) · 1.56 KB
/
.cz-config.js
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
50
51
52
53
54
55
56
57
58
59
60
61
const types = [
` feat: A new feature`,
` fix: A bug fix (or dependency update)`,
` build: Changes that affect the build system or external dependencies`,
` docs: Documentation only changes`,
` style: Changes that do not affect the meaning of the code
(white-space, formatting, missing semi-colons, etc)`,
` refactor: A code change that neither fixes a bug nor adds a feature`,
` perf: A code change that improves performance`,
` test: Adding missing tests`,
` revert: Revert to a commit`,
` WIP: Work in progress`
];
const messages = {
type: `Select the type of change that you're committing:`,
subject: `Write a SHORT, IMPERATIVE tense description of the change:\n`,
body: `Provide a LONGER description of the change (optional). Use "|" to break new line:\n`,
breaking: `Describe any BREAKING CHANGES (optional):\n`,
footer: ` List any RELATED ISSUES to this change (optional).\n`,
confirmCommit: `Are you sure you want to proceed with the commit above?`
};
const scopes = [
"address",
"clientpicker",
"hermit",
"pubkeyimporter",
"slices",
"scriptexplorer",
"testrunner",
"wallet",
"xpubimporter",
"deps",
"other",
];
module.exports = {
types: types.map((type) => ({
value: type.split(":")[0].trim(),
name: type
})),
scopes: scopes.map((scope) => ({
name: scope
})),
messages,
subjectLimit: 65,
allowCustomScopes: false,
allowTicketNumber: false,
allowBreakingChanges: ["feat", "fix"],
breakingPrefix: "BREAKING CHANGE:",
footerPrefix: "ISSUES:"
};