-
Notifications
You must be signed in to change notification settings - Fork 2
/
.commitlintrc.js
53 lines (52 loc) · 1.63 KB
/
.commitlintrc.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
45
46
47
48
49
50
51
52
53
const branch = require("git-branch").sync();
// export empty
module.exports =
branch === "main"
? {
rules: {
"body-leading-blank": [2, "always"],
"body-max-length": [2, "always", Infinity],
"body-max-line-length": [2, "always", Infinity],
"body-min-length": [2, "always", 0],
"footer-leading-blank": [2, "always"],
"footer-max-length": [2, "always", Infinity],
"footer-max-line-length": [2, "always", Infinity],
"footer-min-length": [2, "always", 0],
"header-max-length": [2, "always", 80],
"header-min-length": [2, "always", 0],
"references-empty": [2, "always"],
"scope-enum": [2, "always", []],
"scope-case": [2, "always", "lower-case"],
"scope-empty": [2, "never"],
"scope-max-length": [2, "always", Infinity],
"scope-min-length": [2, "always", 0],
"subject-case": [2, "always", "lower-case"],
"subject-empty": [2, "never"],
"subject-full-stop": [2, "never"],
"subject-max-length": [2, "always", Infinity],
"subject-min-length": [2, "always", 0],
"type-enum": [
2,
"always",
[
"chore",
"feat",
"fix",
"docs",
"style",
"refactor",
"revert",
"test"
]
],
"type-case": [2, "always", "lower-case"],
"type-empty": [2, "never"],
"type-max-length": [2, "always", Infinity],
"type-min-length": [2, "always", 3]
}
}
: {
rules: {
"scope-case": [2, "always", "lower-case"]
}
};