1 Star 0 Fork 8

haiyongou/simple-vue

forked from zijun/simple-vue 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
commitlint.config.js 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
devin 提交于 2021-01-19 16:04 . 测试提交
/*
* @Overview : Commitlint Config
* @Author : Zi Jun
* @Email : [email protected]
* @Date : 2021-01-19 15:54:00
* @LastEditTime : 2021-01-19 15:58:57
* @LastEditors : Zi Jun
* @FilePath : \simple-vue\commitlint.config.js
* @Mark : Do not edit
*/
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': [
2,
'always',
[
'build', //主要目的是修改项目构建系统(例如 glup,webpack,rollup 的配置等)的提交
'feat', // 新增功能
'fix', // bug 修复
'docs', // 文档更新
'style', // 不影响程序逻辑的代码修改(修改空白字符,格式缩进,补全缺失的分号等,没有改变代码逻辑)
'refactor', // 重构代码(既没有新增功能,也没有修复 bug)
'test', // 新增测试用例或是更新现有测试
'revert', // 回滚某个更早之前的提交
'perf', // 性能, 体验优化
'merge', // 分支合并
'chore', // 不属于以上类型的其他类型
],
],
'subject-full-stop': [0, 'never'],
'subject-case': [0, 'never'],
},
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/hiopro/simple-vue.git
[email protected]:hiopro/simple-vue.git
hiopro
simple-vue
simple-vue
master

搜索帮助