forked from Evansy/MallChatWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commitlint.config.js
36 lines (36 loc) · 1.19 KB
/
commitlint.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
module.exports = {
// 忽略部分
ignores: [(commit) => commit.includes('init')],
// 继承的规则
extends: ['@commitlint/config-conventional'],
// 定义规则类型
rules: {
'body-leading-blank': [2, 'always'],
'footer-leading-blank': [1, 'always'],
'header-max-length': [2, 'always', 108],
'subject-empty': [2, 'never'],
'type-empty': [2, 'never'],
// type 类型定义,表示 git 提交的 type 必须在以下类型范围内
'type-enum': [
2,
'always',
[
'feat', // 新增feature
'fix', // 修复bug
'perf', // 优化相关,比如性能、体验的提升
'style', // 仅仅修改了空格、格式缩进、逗号等等,不改变代码逻辑;
'docs', // 仅仅修改了文档,比如README, CHANGELOG, CONTRIBUTE等等;
'test', // 测试用例,包括单元测试、集成测试等
'refactor', // 代码重构,没有加新功能或者修复bug
'build',
'ci',
'chore', // 改变构建流程、或者增加依赖库、工具等
'revert', // 回滚到上一个版本
'wip',
'workflow',
'types',
'release',
],
],
},
}