-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommitlint.config.js
More file actions
45 lines (45 loc) · 907 Bytes
/
commitlint.config.js
File metadata and controls
45 lines (45 loc) · 907 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
module.exports = {
parserPreset: {
parserOpts: {
headerPattern: /^\[(\w+)\] (.+)/,
headerCorrespondence: ['type', 'subject'],
},
},
plugins: [
{
rules: {
'header-match-team-pattern': parsed => {
const { type, subject } = parsed;
if (type === null && subject === null) {
return [false, "header must be in format '[type] subject'"];
}
return [true, ''];
},
},
},
],
rules: {
'type-empty': [2, 'never'],
'header-match-team-pattern': [2, 'always'],
'type-enum': [
2,
'always',
[
'REFACTOR',
'CHORE',
'DOCS',
'FEAT',
'FIX',
'DEL',
'MOVE',
'RENAME',
'MERGE',
'STYLE',
'INIT',
'ADD',
'TEST',
],
],
'type-case': [2, 'always', 'upper-case'],
},
};