UNPKG

innomind-vita

Version:

InnoMind Vita - AI-Powered Industrial Software Platform

28 lines (27 loc) 843 B
module.exports = { extends: ['@commitlint/config-conventional'], rules: { 'type-enum': [ 2, 'always', [ 'feat', // 新功能 'fix', // 修复bug 'docs', // 文档更新 'style', // 代码格式(不影响功能) 'refactor', // 重构 'perf', // 性能优化 'test', // 测试相关 'build', // 构建系统或外部依赖更改 'ci', // CI/CD相关 'chore', // 其他修改 'revert', // 回滚提交 ], ], 'type-case': [2, 'always', 'lowerCase'], 'scope-case': [2, 'always', 'lowerCase'], 'subject-case': [2, 'never', ['sentence-case', 'start-case', 'pascal-case', 'upper-case']], 'subject-full-stop': [2, 'never', '.'], 'header-max-length': [2, 'always', 72], }, };