forked from GoogleCloudPlatform/cloud-solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.commitlintrc.json
More file actions
32 lines (32 loc) · 755 Bytes
/
Copy path.commitlintrc.json
File metadata and controls
32 lines (32 loc) · 755 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
{
"comment": "Disable some rules to match the config of conventional-commit-GCF app. Set errors to warnings to avoid making this a blocking check.",
"extends": ["@commitlint/config-conventional"],
"rules": {
"body-case": [0],
"body-max-line-length": [0],
"footer-max-line-length": [0],
"header-max-length": [0],
"subject-case": [0],
"subject-empty": [1, "never"],
"subject-full-stop": [0],
"type-case": [1, "always", "lower-case"],
"type-enum": [
1,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
]
],
"type-empty": [1, "never"]
}
}