Commit 5d88c3bd by 周志凯

test: test

1 parent eec071b5
'use strict'
module.exports = {
types: [
{ value: 'feat', name: 'feat: 新功能' },
{ value: 'fix', name: 'fix: 修复' },
{ value: 'docs', name: 'docs: 文档注释' },
{ value: 'style', name: 'style: 代码格式(不影响代码运行的变动)' },
{ value: 'refactor', name: 'refactor: 重构(既不增加新功能, 也不是修复 bug)' },
{ value: 'perf', name: 'perf: 性能优化' },
{ value: 'test', name: 'test: 增加测试' },
{ value: 'chore', name: 'chore: 构建过程或辅助工具变动' },
{ value: 'revert', name: 'revert: 回退' },
{ value: 'build', name: 'build: 打包' },
],
// override the messages, defaults are as follows
messages: {
type: '请选择提交类型:',
// scope: '请选择文件修改范围(可选):',
// used if allowCustomScopes is true
customScope: '请输入修改范围(可选):',
subject: '请简要描述提交(必填):',
body: '请输入详细描述(可选, 待优化去除, 跳过即可):',
// breaking: 'List any BREAKING CHANGES(optional):\n',
footer: '请输入要关闭的issue(待优化去除, 跳过即可):',
confirmCommit: '确认使用以上信息提交?(y/n/e/h)'
},
allowCustomScopes: true,
// allowBreakingChanges: ['feat', 'fix'],
skipQuestions: ['body', 'footer'],
// limit subject length, commitlint 默认是72
subjectLimit: 72
}
/node_modules/*
package-lock.json
\ No newline at end of file
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
// type 类型定义
'type-enum': [2, 'always', [
"feat", // 新功能
"fix", // 修复 bug
"docs", // 文档注释
"style", // 代码格式(不影响代码运行的变动)
"refactor", // 重构(既不增加新功能, 也不是修复 bug)
"perf", // 性能优化
"test", // 增加测试
"chore", // 构建过程或辅助工具变动
"revert", // 回退
"build" // 打包
]],
// subject 大小不做校验
// 自动部署的BUILD ROBOT 的commit 信息大写
'subject-case': [0]
}
}
{
"name": "git-commit-demo",
"version": "1.0.0",
"description": "demo of test git-commit",
"main": "index.js",
"dependencies": {
"commitizen": "^4.1.2",
"commitlint": "^8.3.5",
"husky": "^4.2.5"
},
"devDependencies": {
"cz-customizable": "^6.2.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "http://zhouzk@139.217.92.77:55676/zhouzk/git-commit-demo.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"git",
"commit"
],
"author": "zk",
"license": "ISC",
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!