-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommitlint.config.cjs
64 lines (64 loc) · 1.35 KB
/
commitlint.config.cjs
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
64
module.exports = {
extends: [],
rules: {
'type-enum': [
2,
'always',
[
'build',
'ci',
'chore',
'design',
'docs',
'feat',
'fix',
'perf',
'refactor',
'style',
'test',
'revert',
'merge',
'project',
'delete',
],
],
'colon-not-include': [2, 'always'],
},
plugins: [
{
rules: {
//콜론 포함 확인
'colon-not-include': ({ header }) => {
return [
header.includes(' : '),
'커밋 메세지에 :가 포함되지 않았습니다.',
];
},
'type-enum': ({ header }) => {
const types = new Set([
'build',
'ci',
'chore',
'design',
'docs',
'feat',
'fix',
'perf',
'refactor',
'style',
'test',
'revert',
'merge',
'project',
'delete',
]);
const type = header.split(' : ')[0]; //커밋 메세지의 type 추출
return [
types.has(type), //types에 type이 포함되어 있는지 확인
`${type}은 유효한 커밋 type이 아닙니다.`, //에러 메세지
];
},
},
},
],
};