-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommitlint.config.js
44 lines (43 loc) · 928 Bytes
/
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
/*
* @Author: wangguixing
* @Date: 2023-03-06 16:35:08
* @LastEditors: wangguixing
* @LastEditTime: 2023-04-01 14:56:18
* @FilePath: \commitlint.config.js
* @Description: 注明出处即可
* Copyright 2023 wangguixing, All Rights Reserved.
* 2023-03-06 16:35:08
*/
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': [
2,
'always',
[
'add',
'feat',
'fix',
'update',
'change',
'docs',
'test',
'release',
'merge',
'chore',
'create',
'remove',
'styles',
],
],
'type-case': [0],
'type-empty': [0],
'scope-empty': [0],
'scope-case': [0],
'body-empty': [2, 'always'],
'footer-empty': [2, 'always'],
'subject-full-stop': [0, 'never'],
'subject-case': [0, 'never'],
'header-max-length': [0, 'always', 72],
},
};