当前位置: 首页 > 工具软件 > git-webhook > 使用案例 >

前端工程化:githook工具-husky

茹照
2023-12-01

1.npm install husky

2.pakage.json配置

{
  "husky": {
    "hooks": {
      "pre-commit": "npm run test", // 在commit之前先执行npm run test命令
      "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS" // 校验commit时添加的备注信息是否符合我们要求的规范
    }
  }
}

3.git commit -m 的时候,按照格式书写,<type>: <subject>,注意冒号后面有空格。

用于说明 commit 的类别,只允许使用下面7个标识。

feat:新功能(feature)
fix:修补bug
docs:文档(documentation)
style: 格式(不影响代码运行的变动)
refactor:重构(即不是新增功能,也不是修改bug的代码变动)
test:增加测试
chore:构建过程或辅助工具的变动
如果type为feat和fix,则该 commit 将肯定出现在 Change log 之中。

 类似资料: