UNPKG

367 BJSONView Raw
1{
2 "extends": ["@commitlint/config-conventional"],
3 "rules": {
4 "body-max-line-length": [0],
5 "type-enum": [
6 2,
7 "always",
8 [
9 "build",
10 "chore",
11 "ci",
12 "docs",
13 "feat",
14 "fix",
15 "perf",
16 "refactor",
17 "revert",
18 "style",
19 "test",
20 "meta"
21 ]
22 ]
23 }
24}