AutoCommit/commitlint.config.js

25 lines
866 B
JavaScript
Raw Normal View History

2020-12-25 14:45:44 +08:00
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'subject-case': [0],
'scope-case': [0],
'type-enum': [
2,
'always',
[
'feat', // 增加新功能
'fix', // 修复bug
'build', // 构造工具的或者外部依赖的改动例如webpacknpm
'chore', // 不修改src或者test的其余修改例如构建过程或辅助工具的变动
'ci', // 与CI持续集成服务有关的改动
'docs', // 只改动了文档相关的内容
'style', // 不影响代码含义的改动,例如去掉空格、改变缩进、增删分号
'perf', // 提高性能的改动
'refactor', // 代码重构时使用
'revert', // 执行git revert打印的message
'test', // 添加测试或者修改现有测试
],
],
},
};