aboutsummaryrefslogtreecommitdiff
path: root/commitlint.config.js
blob: d3ca128459fe9599051f49a6d5f11178377de02e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module.exports = {
  extends: ["@commitlint/config-conventional"],
  rules: {
    "scope-enum": [
      2,
      "always",
      [
        "global",
      ],
    ],
  },
};