美文网首页
commitlint 从0到1 (git commit 校验工具

commitlint 从0到1 (git commit 校验工具

作者: copyLeft | 来源:发表于2021-06-29 14:50 被阅读0次

背景

Commitlint git commit 格式校验工具。

安装

  • 安装npm包
npm install -g @commitlint/cli @commitlint/config-conventional
  • 新建配置文件
touch commitlint.config.js
// commitlint.config.js
module.exports = {
  extends: ['@commitlint/config-conventional']
}

配置文件

默认读取根目录下commitlint.config.js 配置文件

指定配置文件

commitlint --config <file path>

配置项

  • extends 继承外部配置文件或npm配置包
{
  extends: [
    // 使用本地共享配置文件
    './commitlint.local.js',
    // 使用第三方npm包
    '@commitlint/config-conventional',  
    // 以 `<scope>/commitlint-config` 格式的第三方包, 提供简写模式
    '@coolcompany',
    // commitlint-config-*
    'lerna',
  ]
}
  • parserPreset 解析器路径(必填)
{
   parserPreset: 'conventional-changelog-atom',
}
  • formatter 格式化工具(必填)
{
  formatter: '@commitlint/format',
}
  • rules 本地自定义规则, 优先级高于extends
{
  'type-enum': [2, 'always', ['foo']]
}
  • ignores 忽略函数, 帮助忽略某些不需要的提交信息
{
  ignores: [(commit) => commit === ''],
}
  • defaultIgnores 是否使用默认忽略配置
{
  defaultIgnores: true
}
  • helpUrl 帮助信息地址

'https://github.com/conventional-changelog/commitlint/#what-is-commitlint',

  • prompt 自定义提示信息
{
  prompt: {
    messages: {},
    questions: {
      type: {
        description: 'please input type:',
      },
    },
  },
}

自定义校验规则

规则格式

[规则名称]:[level, applicable, value]

  • level 校验等级
    • 0 禁用
    • 1 警告
    • 2 错误
  • applicable
    • always
    • nerver
  • value 参数值

规则可接收: 1. 规则数组 Array, 2. 返回规则数组的函数 () => arry , 3. Promise规则数组 Promise<array> ,作为值

{
  "rules":{
      "header-max-length": [0, "always", 72],
      "header-max-length": () => [0, "always", 72],
      "header-max-length": async () => [0, "always", 72],
  }
}

规则项

<header>

  • header-case 单词格式, 例如: upper-case 全大写
  • header-full-stop 结束符
  • header-max-length header 最大长度
  • header-min-length header 最小长度
  • references-empty
  • scope
    • scope-enum scope 可选值, 例如 [ 'components', 'utils', 'cli' ]
    • scope-case scope 单词格式
    • scope-empty 是否为空
    • scope-max-length scope最大内容长度
    • scope-min-length scope最小内容长度
  • subject
    • subject-case subject 单词格式
    • subject-empty subject 是否为空
    • subject-full-stop subject 中止符
    • subject-max-length subject 最大内容长度
    • subject-min-length subject 最小内容长度
    • subject-exclamation-mark 分割符
  • 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>

  • body-full-stop body 结束符
  • body-leading-blank body 开头空行
  • body-empty body 是否为空
  • body-max-length body最大内容长度
  • body-max-line-length body最大内容行数
  • body-min-length body最小内容长度
  • body-case 单词格式 , 例如: upper-case 全大写

<footer>

  • footer-leading-blank footer 开头空行
  • footer-empty footer是否为空
  • footer-max-length footer最大内容长度
  • footer-max-line-length footer最大内容行数
  • footer-min-length footer最小内容长度

规则插件

规则插件为我们提供自定义规则校验个能力。

本地插件

{
  rules: {
    // 添加规则
    'header-size-10': [2, 'always']
  }
  plugins: [
     // 定义插件
    {
      rules:{
        // 定义规则
        'header-size-10': ({header}) => {
           const pass = header.length > 10
           const message = `header 长度不能超过10个字符`
           return [pass, message]
        }
      }  
    }
  ]

官网其他插件方式

Prompt 提示器

提示器类似 commitizen 提供commit 提示工具。

安装

  • 包安装
npm i -D  @commitlint/cli  @commitlint/config-conventional @commitlint/prompt-cli
  • 配置文件
// commitlint.config.js
module.exports = {extends: ['@commitlint/config-conventional']}
  • package.json 设置
"scripts": {
  "commit": "commit"
}
  • 使用

git add *

npm run commit

commitizen 适配器

commitizen 作为 Prompt 的替代方案, 官方为他提供适配器 @commitlint/cz-commitlint

该适配器主要有两部分组成:

  • messages: 提示信息
  • questions: 交互配置

修改适配器

通过 commitlint.config.json 配置文件自定义类型提示

为命令配置中文提示

image.png image.png

@commitline/cz-commitlint 详情

相关文章

  • commitlint 从0到1 (git commit 校验工具

    背景 Commitlint git commit 格式校验工具。 安装 安装npm包 新建配置文件 配置文件 默认...

  • Commitizen 从0到1(git commit 规范工具)

    简介 commitizen git commit 格式化工具, 为我们提供标准化的 commit 信息。 帮助我们...

  • commit 提交规范

    1.依赖的包(使用yarn commit): npm i @commitlint/cli @commitlint/...

  • Git Commint规范

    配置检测git commit是否合法 新建commitlint.config.js配置git提交规范(这里使用的是...

  • iOS git 的基本使用

    1.git commit 数据到本地 git commit 到本地后,可以使用git pull从服务器拉取别人的最...

  • Git Commit校验

    Git Commit校验 环境要求: nodejs git 一、初始化nodejs项目: 在我们iOS项目的根目录...

  • git的使用

    使用git的前提是已经配置好git和github 关闭eslint校验 git commit --no-verif...

  • commitlint、husky规范git commit日志

    安装commitlint插件 命令: 在package.json中添加如下内容 项目目录下创建commitlint...

  • husky 从0到1 (git hooks 工具)

    背景 平常开发中使用 eslint prettier 等校验工具时, 希望在提交代码前做一次校验或版本更新触发构建...

  • Git从0到1

    本文只是帮助你入门,从一个不会使用git的小白,到会解决开发中常见的使用。废话不多说,直接进入正题。 git gi...

网友评论

      本文标题:commitlint 从0到1 (git commit 校验工具

      本文链接:https://www.haomeiwen.com/subject/zcfkultx.html