generated from code-server-boilerplates/starter-pack-as-base-image
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommitlint.config.js
38 lines (38 loc) · 1.19 KB
/
commitlint.config.js
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
module.exports = {
// yes, our apologies to Angular haters for this BS
extends: ["@commitlint/config-conventional"],
rules: {
"scope-enum": [
2,
"always",
[
"global",
"helm-charts", // BUILD, FEAT, or CHORE
"github-actions", // CI, BUILD, or CHORE
"mergify-config", "mergify",
"deps", // CI, CHORE
"deps-dev", // CI, CHORE
"deps-peer", // CI, CHORE
"dpes-optional", // CI, CHORE
"commitlint", // CI, CHORE
"commitizen", // mostly CHORE
"containers", // FIX, CHORE, FEAT
"virtual-machines", // FIX, FEAT, CHORE
"github-org-files", // CHORE
"deployment-guides", // DOCS
"readme", // DOCS, CHORE
"lockfiles", // CHORE
"deployment-guides", // CHORE, DOCS
"toolkits-packages:scripts",
"toolkits-packages:dotbashrcdir",
"toolkits-packages:nonsense-bullshit", // probably for our example packages
"post-repo-creation",
"issue-templates",
"issue-labels",
"pr-templates",
"husky",
"ignorefiles"
],
],
},
};