commitlint.config.cjs 335 B

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