代码拉取完成,页面将自动刷新
/**
* feat:新功能(feature)
* fix:修补bug
* docs:文档(documentation)
* style: 代码格式(不影响代码运行的变动)
* refactor:重构(即不是新增功能,也不是修改bug的代码变动)
* test:增加测试
* chore:构建过程或辅助工具的变动
*
* 提交格式:<type>(<scope>): <describe> 其中scope可忽略
*
* 提交实例: git commit -am 'fix(location): 登录接口地址修改'
*
*/
module.exports = {
// extends: ['@commitlint/config-conventional'],
extends: ['cz'],
// cz 方式需要配合插件
// yarn add commitlint-config-cz @commitlint/cli -D
rules: {
// https://commitlint.js.org/#/reference-rules
// level: 警告级别,0: 禁用, 1: 警告, 2: 报错
// applicable: always:启用 | never:不启用
// value: 可用值
// commit type类型
'body-leading-blank': [1, 'always'],
'footer-leading-blank': [1, 'always'],
'header-max-length': [2, 'always', 80],
'scope-case': [2, 'always', 'lower-case'],
'scope-empty': [0, 'never'],
'subject-case': [2, 'never', ['sentence-case', 'start-case', 'pascal-case', 'upper-case']],
'subject-empty': [0, 'never'],
'subject-full-stop': [2, 'never', '.'],
'type-case': [2, 'always', 'lower-case'],
'type-empty': [2, 'never'],
// The scope-enum : defined in the cz-config
// The 'type-enum': defined in the cz-config
},
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。