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