-
Notifications
You must be signed in to change notification settings - Fork 10
/
commitlint.config.js
44 lines (44 loc) · 1.12 KB
/
commitlint.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
module.exports = {
ignores: [commit => commit.includes('init')],
extends: ['@commitlint/config-conventional'],
// extends: ['@commitlint/config-conventional', 'cz'],
rules: {
'type-enum': [
2,
'always',
[
'feat',
'fix',
'docs',
'style',
'refactor',
'perf',
'test',
'build',
'ci',
'chore',
'revert',
'wip',
'mod',
'release',
],
],
// // <type> 格式 小写
// 'type-case': [2, 'always', 'lower-case'],
// // <type> 不能为空
// 'type-empty': [2, 'never'],
// // <scope> 范围不能为空
// 'scope-empty': [2, 'never'],
// // <scope> 范围格式
// 'scope-case': [0],
// // <subject> 主要 message 不能为空
// 'subject-empty': [2, 'never'],
// // <subject> 以什么为结束标志,禁用
// 'subject-full-stop': [0, 'never'],
// // <subject> 格式,禁用
// 'subject-case': [0, 'never'],
// // <body> 以空行开头
// 'body-leading-blank': [1, 'always'],
// 'header-max-length': [0, 'always', 72],
},
};