-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcz-config.js
More file actions
34 lines (32 loc) · 1.28 KB
/
cz-config.js
File metadata and controls
34 lines (32 loc) · 1.28 KB
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
/**
* commitzen 配置
* see: https://github.com/leonardoanalista/cz-customizable
*/
module.exports = {
types: [
{ value: "feat", name: "feat: 一个新的特性" },
{ value: "fix", name: "fix: 修复一个Bug" },
{ value: "docs", name: "docs: 变更的只有文档" },
{ value: "style", name: "style: 空格, 分号等格式修复" },
{ value: "refactor", name: "refactor: 代码重构,注意和特性、修复区分开" },
{ value: "perf", name: "perf: 提升性能" },
{ value: "test", name: "test: 添加一个测试" },
{ value: "revert", name: "revert: 代码回退" },
{ value: "chore", name: "chore: 开发工具变动(构建、脚手架工具等)" },
{ value: "release", name: "release: 发布项目" }
],
scopes: [],
messages: {
type: "选择一种你的提交类型:",
scope: "选择一个scope:",
customScope: "本次更改范围 scope(可选):",
subject: "短说明:",
body: "长说明,使用\"|\"换行(可选):\n",
breaking: "非兼容性说明 (可选):\n",
footer: "关联的BUG,例如:【一个Bug】http://xxx.com/bug (可选):\n",
confirmCommit: "确定提交说明?"
},
allowCustomScopes: true,
allowBreakingChanges: ["feat", "fix"],
subjectLimit: 100
}