commitlint.config.js 512 B

12345678910111213141516171819202122
  1. module.exports = {
  2. extends: ['@commitlint/config-conventional'],
  3. rules: {
  4. 'type-enum': [
  5. 2,
  6. 'always',
  7. [
  8. 'feat', // 新功能 feature
  9. 'fix', // 修复 bug
  10. 'docs', // 文档注释
  11. 'style', // 代码格式
  12. 'refactor', // 重构
  13. 'perf', // 性能优化
  14. 'test', // 增加测试
  15. 'chore', // 构建过程或辅助工具的变动
  16. 'revert', // 回退
  17. 'build' // 打包
  18. ]
  19. ],
  20. 'subject-case': [0]
  21. }
  22. };