-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.commitlintrc
More file actions
44 lines (44 loc) · 884 Bytes
/
.commitlintrc
File metadata and controls
44 lines (44 loc) · 884 Bytes
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
{
"extends": [
"@commitlint/config-angular"
],
"rules": {
"subject-case": [
2,
"always",
[
"sentence-case",
"start-case",
"pascal-case",
"upper-case",
"lower-case"
]
],
"type-enum": [
2,
"always",
[
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"improve",
"refactor",
"revert",
"style",
"test",
"db",
"infra"
]
],
"type-case": [
2,
"always",
[
"lower-case"
]
]
}
}