0 Star 0 Fork 1

嗷大张 / ecs-lite

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
commitlint.config.js 632 Bytes
AI 代码解读
一键复制 编辑 原始数据 按行查看 历史
aodazhang 提交于 2023-01-16 10:26 . feat(all): 项目初始化
/**
* @description @commitlint/cli配置文件
*/
module.exports = {
// 1.扩展
extends: [
'@commitlint/config-conventional' // 配置检测commit信息符合规范
],
// 2.自定义规则
rules: {
// 类型枚举:提交的 type 必须在以下类型范围内
'type-enum': [
2,
'always',
[
'feat',
'fix',
'test',
'refactor',
'style',
'build',
'chore',
'ci',
'perf',
'revert',
'docs'
]
],
// subject 大小写不做校验
'subject-case': [0]
}
}
1
https://gitee.com/aodazhang/ecs-lite.git
git@gitee.com:aodazhang/ecs-lite.git
aodazhang
ecs-lite
ecs-lite
master

搜索帮助