加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
commitlint.config.js 820 Bytes
一键复制 编辑 原始数据 按行查看 历史
moonrailgun 提交于 2023-02-19 14:38 . chore: update repo config
/**
* document: https://commitlint.js.org/#/reference-configuration
*
* https://github.com/angular/angular/blob/master/CONTRIBUTING.md#type
* feat:new feature 新功能(feature)
* fix:bug fix 修补bug
* docs:document 文档(documentation)
* style:style(Changes that do not affect code execution) 格式(不影响代码运行的变动)
* refactor:Refactoring (i.e., code changes that are not new features or bug fixes) 重构(即不是新增功能,也不是修改bug的代码变动)
* perf:performance optimization 性能优化
* test:add test case 增加测试
* chore:Changes to the build process or accessibility tools 构建过程或辅助工具的变动
*/
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'subject-case': [0],
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化