-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcshooks-config.json
57 lines (57 loc) · 1.23 KB
/
cshooks-config.json
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
{
"subject": {
"allowedTypes": [
"feat",
"fix",
"chore",
"test",
"docs",
"build",
"ci",
"style",
"refactor",
"perf",
"revert"
],
"allowedScopes": [
"[\\w\\s!@\\#\\$%\\^\u0026\\*\\(\\)_=\\\u002B~\u0060\u0027\\[\\{}\\*\u00BF\\?\\|:;,\\.\u003E\u003C\\\\\\-\\]\\/]{2,20}"
],
"isTypeRequired": true,
"isScopeRequired": false,
"descriptionRules": {
"isRequired": true,
"letterCase": "sentence",
"minLength": 10,
"maxLength": 70,
"allowedSpecialChars": [],
"mayEndWithPeriod": false,
"mustEndWithPeriod": false
}
},
"body": {
"isRequired": false,
"letterCase": "any",
"minLength": 0,
"maxLength": 0,
"allowedSpecialChars": [],
"mayEndWithPeriod": true,
"mustEndWithPeriod": false
},
"footer": {
"isRequired": false,
"allowedKeywords": [
"BREAKING CHANGE",
"BREAKING-CHANGE",
"[a-z]\u002B(?:-[a-z]\u002B)*"
],
"descriptionRules": {
"isRequired": true,
"letterCase": "sentence",
"minLength": 10,
"maxLength": 0,
"allowedSpecialChars": [],
"mayEndWithPeriod": false,
"mustEndWithPeriod": false
}
}
}