加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
commitlint.config.cjs 933 Bytes
一键复制 编辑 原始数据 按行查看 历史
gist006 提交于 2022-12-07 16:00 . feat: base
module.exports = {
extends: ["@commitlint/config-conventional"],
rules: {
"type-enum": [
2,
"always",
[
"build", // 编译相关修改(新版本发布)
"feat", // 新功能
"fix", // 修复bug
"update", // 更新某功能
"refactor", // 重构
"docs", // 文档
"chore", // 增加依赖或库
"style", // 格式(不影响代码变动)
"revert", // 撤销commit 回滚上一版本
"perf", // 性能优化
"test" // 测试单元
]
],
"type-case": [0],
"type-empty": [0],
"scope-empty": [0],
"scope-case": [0],
"subject-full-stop": [0, "never"],
"subject-case": [0, "never"],
"header-max-length": [0, "always", 72]
}
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化