1. 首页
  2. 数据库
  3. 其它
  4. config commitlint:在flagbit上使用Commitlint配置 源码

config commitlint:在flagbit上使用Commitlint配置 源码

上传者: 2021-03-15 19:57:46上传 ZIP文件 5.53KB 热度 12次
配置委员会 在flagbit上使用Commitlint配置 如何在我的项目中使用它? 在项目的根目录中创建一个名为commitlint.config.js的新文件,包括以下内容: module . exports = { extends : [ "@flagbit/config-commitlint" ] , parserPreset : { parserOpts : { issuePrefixes : [ "FBTLOPS-" ] , } , } , } ; ...添加(或扩展现有的)Makefile以包含lint目标: .DEFAULT_GOAL := lint GITHUB_BASE_REF ?= master .PHONY : lint lint : commitlint -g index.js --from= $$( git re
用户评论