.commitlintrc.json 285 B

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