diff --git a/.commitlintrc.json b/.commitlintrc.json new file mode 100644 index 0000000..99ffd9a --- /dev/null +++ b/.commitlintrc.json @@ -0,0 +1,22 @@ +{ + "extends": ["@commitlint/config-conventional"], + "rules": { + "type-enum": [ + 2, + "always", + [ + "feat", + "fix", + "docs", + "chore", + "style", + "refactor", + "ci", + "test", + "perf", + "revert", + "vercel" + ] + ] + } +}