当前位置:   article > 正文

git代码提交规范、强制git代码提交规范、强制代码进行格式化_git commit 强制提交

git commit 强制提交

一、git代码提交规范

1、安装commitizen和cz-customizable

npm install -g commitizen@4.2.4

npm i cz-customizable@6.3.0 --save-dev

2、在package.json中进行新增

"config": {

  "commitizen": {

    "path": "node_modules/cz-customizable"

  }

}

3、初始化完成之后 将.cz-config.js配置文件 拖到根目录下

4、之后就可以用 git cz 来代替 git commit    (在此先尝试去 提交代码 去使用git cz)

  .cz-config.js

  1. module.exports = {
  2. // 可选类型
  3. types: [
  4. { value: 'feat', name: 'feat: 新功能' },
  5. { value: 'fix', name: 'fix: 修复' },
  6. { value: 'docs', name: 'docs: 文档变更' },
  7. { value: 'style', name: 'style: 代码格式(不影响代码运行的变动)' },
  8. {
  9. value: 'refactor',
  10. name: 'refactor: 重构(既不是增加feature,也不是修复bug)'
  11. },
  12. { value: 'perf', name: 'perf: 性能优化' },
  13. { value: 'test', name: 'test: 增加测试' },
  14. { value: 'chore', name: 'chore: 构建过程或辅助工具的变动' },
  15. { value: 'revert', name: 'revert: 回退' },
  16. { value: 'build', name: 'build: 打包' }
  17. ],
  18. // 消息步骤
  19. messages: {
  20. type: '请选择提交类型:',
  21. customScope: '请输入修改范围(可选):',
  22. subject: '请简要描述提交(必填):',
  23. body: '请输入详细描述(可选):',
  24. footer: '请输入要关闭的issue(可选):',
  25. confirmCommit: '确认使用以上信息提交?(y/n/e/h)'
  26. },
  27. // 跳过问题
  28. skipQuestions: ['body', 'footer'],
  29. // subject文字长度默认是72
  30. subjectLimit: 72
  31. }

 效果--

 

 

二、强制git代码提交规范 (不按照规范提交 会提交失败)

1、使用husky进行强制git代码提交规范

<!-- 安装commitlint -->

npm install --save-dev @commitlint/config-conventional@12.1.4 @commitlint/cli@12.1.4

<!-- 安装husky -->

npm install husky@7.0.1 --save-dev

<!-- huskt初始化 -->

npx husky install

2、初始化完成之后 将commitlint.config.js配置文件 拖到根目录下

3、在package.json内scripts中新增指令

"prepare": "husky install"

4、并执行

npm run prepare

5、执行命令新增husky配置文件

npx husky add .husky/commit-msg

6、在commit-msg中写入这段话

npx --no-install commitlint --edit

这样强制commit提交文件 就会进行校验规范   规范不正确会提交失败

  commitlint.config.js 配置文件--

  1. module.exports = {
  2. // 继承的规则
  3. extends: ['@commitlint/config-conventional'],
  4. // 定义规则类型
  5. rules: {
  6. // type 类型定义,表示 git 提交的 type 必须在以下类型范围内
  7. 'type-enum': [
  8. 2,
  9. 'always',
  10. [
  11. 'feat', // 新功能 feature
  12. 'fix', // 修复 bug
  13. 'docs', // 文档注释
  14. 'style', // 代码格式(不影响代码运行的变动)
  15. 'refactor', // 重构(既不增加新功能,也不是修复bug)
  16. 'perf', // 性能优化
  17. 'test', // 增加测试
  18. 'chore', // 构建过程或辅助工具的变动
  19. 'revert', // 回退
  20. 'build' // 打包
  21. ]
  22. ],
  23. // subject 大小写不做校验
  24. 'subject-case': [0]
  25. }
  26. }

  效果 --

   提交失败(不按照规范提交)

  

    提交成功(按照规范)

 

三、提交代码时 强制对代码进行格式化

1.使用husky强制代码格式化 执行命令 创建配置文件

npx husky add .husky/pre-commit

2.在生成的文件中写入 npx lint-staged

3.在package.json文件中新增lint-staged

"lint-staged": {

   "src/**/*.{js,vue}": [      //src目录下所有的js和vue文件

     "eslint --fix",           // 自动修复

     "git add"                 // 自动提交时修复

   ]

 }


配置好之后,你的项目会在提交的时候 通过eslint自动格式化代码

还有问题的话私信 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/542614
推荐阅读
相关标签
  

闽ICP备14008679号