-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcommitlint.js
63 lines (59 loc) · 1.53 KB
/
commitlint.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
62
63
'use strict';
var VALID_TYPES,
VALID_PREFIXES;
VALID_TYPES = [
'build',
'chore',
'ci',
'config',
'docs',
'feat',
'fix',
'perf',
'refactor',
'revert',
'style',
'test',
];
VALID_PREFIXES = [
'Merge',
'Revert',
];
module.exports = {
rules: {
'body-leading-blank': [ 2, 'always' ],
'body-max-line-length': [ 2, 'always', 90 ],
'footer-leading-blank': [ 2, 'always' ],
'footer-max-line-length': [ 2, 'always', 90 ],
'header-max-length': [ 2, 'always', 72 ],
'scope-case': [ 2, 'always', [ 'lower-case', 'kebab-case' ] ],
'scope-enum': [ 2, 'always', VALID_TYPES ],
'subject-case': [
2,
'never',
[ 'upper-case' ],
],
'subject-empty': [ 2, 'never' ],
'subject-full-stop': [ 2, 'never', '.' ],
'type-case': [ 2, 'always', 'lower-case' ],
'type-empty': [ 2, 'never' ],
'type-enum': [
2,
'always',
// In addition to the standard types, allow "sub" for commits that support a
// larger feature, fix, etc.
VALID_TYPES.concat([ 'sub' ]),
],
},
// The default ignores of commitlint allow prefixes like fixup! and squash!,
// which we don't allow. Therefore, we're turning off defaultIgnores and
// explicitly ignoring only auto-generated merge commit and revert messages
defaultIgnores: false,
ignores: [
(commit) => {
return VALID_PREFIXES.some((prefix) => {
return commit.startsWith(prefix);
});
},
],
};