'type-case': [2, 'always', 'lower-case'], /** * 确保 type(类型)部分不为空。 */ 'type-empty': [2, 'never'], /** * type[scope]: [function] description * ^^^ * 限定 type 的值必须在以下选项中,以确保提交类型统一: * - build、chore、ci、docs、feat、fix、perf、refactor、rever...
java复制代码module.exports={extends:['@commitlint/config-conventional'],// 校验规则rules:{'type-enum':[2,'always',['feat','fix','docs','style','refactor','perf','test','chore','revert','build',],],'type-case':[0],'type-empty':[0],'scope-empty':[0],'scope-case':[0],'s...
extends: ['@commitlint/config-conventional'], rules: {'type-enum': [2,'always', ['feature','update','fixbug','refactor','optimize','style','docs','chore']],'type-case': [0],'type-empty': [0],'scope-empty': [0],'scope-case': [0],'subject-full-stop': [0,'never'],'s...
'type-enum': [2, 'always', [ 'upd', 'feat', 'fix', 'refactor', 'docs', 'chore', 'style', 'revert' ]], 'type-case': [0], 'type-empty': [0], 'scope-empty': [0], 'scope-case': [0], 'subject-full-stop': [0, 'never'], 'subject-case': [0, 'never'], 'heade...
"type-empty": [2, "never"], "subject-case": [0], "type-enum": [ 2, "always", [ "feat", "fix", "docs", "style", "refactor", "perf", "test", "build", "ci", "chore", "revert", "wip", "workflow", "types",
type-empty type是否为空 type-max-length type最大内容长度 type-min-length type最小内容长度 signed-off-by trailer-exists body-full-stop body 结束符 body-leading-blank body 开头空行 body-empty body 是否为空 body-max-length body最大内容长度 body-max...
$ create-react-app react-lint --template typescript 配置eslint ESLint是在ECMAScript/JavaScript代码中识别和报告模式匹配的工具,它的目标是保证代码的一致性和避免错误。 $ npx eslint --init 在终端执行上面命令初始化eslint配置,执行后,终端会出现人机交互,按照自己需求勾选想要的配置即可 ...
这里列出了大部分常用的配置,其它的可以参考Commitlint网站,具体使用例子: 这里我们使用错误的提交方式,最上面的是自动测试的脚本,大家可以忽略,husky给出了commit-msg的input为xxx,触发了subject-empty,type-empty两个规则,提交不符合规范,被拦了下来。如果是正确的提交,例子如下: 关于Commitlint的使用就到这里了。
这里列出了大部分常用的配置,其它的可以参考Commitlint网站,具体使用例子: 这里我们使用错误的提交方式,最上面的是自动测试的脚本,大家可以忽略,husky给出了commit-msg的input为xxx,触发了subject-empty,type-empty两个规则,提交不符合规范,被拦了下来。如果是正确的提交,例子如下: 关于Commitlint的使用就到这里了。
type type-enum type 可选值 例如: [ 'feat', 'fix' ] type-case type 单词格式 type-empty type是否为空 type-max-length type最大内容长度 type-min-length type最小内容长度 signed-off-by trailer-exists body-full-stop body 结束符 body-leading...