-
Notifications
You must be signed in to change notification settings - Fork 58
/
.commitlintrc.json
41 lines (41 loc) · 1 KB
/
.commitlintrc.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
{
"rules": {
"body-leading-blank": [2, "always"],
"body-max-length": [2, "always", 9999],
"body-min-length": [2, "always", 0],
"footer-max-length": [2, "always", 9999],
"footer-min-length": [2, "always", 0],
"header-max-length": [2, "always", 72],
"header-min-length": [2, "always", 0],
"references-empty": [0],
"scope-enum": [0],
"scope-case": [0],
"scope-empty": [2, "always"],
"scope-max-length": [0],
"scope-min-length": [0],
"subject-case": [0],
"subject-empty": [2, "never"],
"subject-full-stop": [2, "never", "."],
"subject-max-length": [2, "always", 9999],
"subject-min-length": [2, "always", 0],
"type-enum": [
2,
"always",
[
"fix",
"Fix",
"feature",
"Feature",
"breaking",
"Breaking",
"other",
"Other"
]
],
"type-case": [0],
"type-empty": [2, "never"],
"type-max-length": [0],
"type-min-length": [0],
"signed-off-by": [0]
}
}