-
Notifications
You must be signed in to change notification settings - Fork 7
/
commitlint.js
46 lines (43 loc) · 1.06 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
'use strict';
var VALID_TYPES;
VALID_TYPES = [
'build',
'chore',
'ci',
'config',
'docs',
'feat',
'fix',
'perf',
'refactor',
'revert',
'style',
'test',
];
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' ]),
],
},
};