本文主要是介绍cz-customizable 规范代码提交信息,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
参考文章
安装依赖
cz-customizable 安装
yarn add cz-customizable --save-dev
commitizen 安装
yarn add commitizen --save-dev
package.json 文件配置
{...,"scripts":{"commit": "cz",},"config": {"commitizen": {"path": "./node_modules/cz-customizable"}}
}
配置文件
新增配置文件,放在 src目录同级 (根目录下创建)
.cz-config.js
module.exports = {types: [{value: 'feat',name: '✨ feat: 新功能'},{value: 'fix',name: '🐛 fix: Bug修复'},{value: 'docs',name: '📝 docs: 文档新增/变更'},{value: 'style',name: '🎨 style: 代码风格调整'},{value: 'refactor',name: '🔨 refactor: 代码重构'},{value: 'perf',name: '⚡️ perf: 性能提升'},{value: 'test',name: '🧪 test: 测试用例添加/更正'},{value: 'revert',name: '⏪ revert: 代码回滚'},{value: 'build',name: '📦 build: 构建编译过程变更'},{value: 'chore',name: '🚀 chore: 日常任务维护'},{value: 'ci',name: '👷 ci: 自动化集成流程'}],usePreparedCommit: false, // to re-use commit from ./.git/COMMIT_EDITMSGallowTicketNumber: false,isTicketNumberRequired: false,ticketNumberPrefix: 'TICKET-',ticketNumberRegExp: '\\d{1,5}',// 覆盖消息,默认如下messages: {type: '请选择提交类型 (必填)',scope: '请选择文件修改范围 (可选)',// 如果allowCustomScopes为true则使用 (官方存在bug, 暂未修复)customScope: '请输入文件修改范围 (可选)',subject: '请简要描述提交 (必填)',body: '请输入详细描述 (可选)',breaking: '列出任何重大变更 (可选)',footer: '请输入要关闭的issue (可选)',confirmCommit: '确定提交此说明吗?'},allowCustomScopes: true,allowBreakingChanges: ['feat', 'fix'],skipQuestions: ['scope', 'body', 'footer'], // 跳过您想要的任何问题subjectLimit: 72 // 限制主题长度
}
.commitlintrc.js
const typeEnum = require('./.cz-config')
console.log('\x1B[0;37;44m INFO \x1B[0m','\x1B[0;;34m ' +`读取了: ${__filename.slice(__dirname.length + 1)}` +' \x1B[0m'
)module.exports = {extends: ['@commitlint/config-conventional'],// https://github.com/conventional-changelog/commitlint/blob/master/docs/reference-rules.mdrules: {'type-enum': [2, 'always', typeEnum.types.map((i) => i.value)],'scope-empty': [0, 'never']}
}
使用
git add .npm run commit...
这篇关于cz-customizable 规范代码提交信息的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!