Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.commitlintrc.json - github.com/jsxc/jsxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0829593bac4551b0a9f1f3eabc9889125a953327 (plain)
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
{
   "extends": ["@commitlint/config-conventional"],
   "rules": {
      "type-enum": [
         2,
         "always",
         [
            "build",
            "ci",
            "chore",
            "docs",
            "feat",
            "fix",
            "perf",
            "refactor",
            "revert",
            "style",
            "test",
            "example",
            "release"
         ]
      ],
      "body-max-line-length": [
          1,
          "always",
          100
      ]
   }
}