.commitlintrc 334 B

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