2 Star 8 Fork 5

旭阳Risun/Admin-Juejin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
commitlint.config.js 2.13 KB
一键复制 编辑 原始数据 按行查看 历史
sunhongyu 提交于 2022-02-23 22:44 . chore: 重构vite配置
/*
* @Description: commit-msg提交信息格式规范
*
* commit-msg格式: type(scope): <subject>
* - type: 用于表明我们这次提交的改动类型,是新增了功能?还是修改了测试代码?又或者是更新了文档?
* - build: 编译相关的修改,例如发布版本、对项目构建或者依赖的改动
* - chore: 其他修改, 比如改变构建流程、或者增加依赖库、工具等
* - ci: 持续集成修改
* - docs: 仅文档新增/改动 (documentation)
* - feat: 新特性、新功能(feature)
* - fix: 修改bug(fixbug)
* - optimize: 优化构建工具或运行时性能
* - perf: 优化相关,比如提升性能、体验
* - refactor: 代码重构
* - revert: 回滚到上一个版本
* - style: 代码格式修改, 注意不是 css 修改
* - test: 测试用例修改
* - update: 更新某功能
* - scope:一个可选的修改范围。用于标识此次提交主要涉及到代码中哪个模块。
* - Subject:一句话描述此次提交的主要内容,做到言简意赅
*/
const type = [
'build',
'chore',
'ci',
'docs',
'feat',
'fix',
'optimize',
'perf',
'refactor',
'revert',
'style',
'test',
'update',
]
const scopes = [
'project',
'core',
'style',
'docs',
'ci',
'dev',
'build',
'deploy',
'other',
'typography',
'color',
'border',
'var',
]
module.exports = {
ignores: [(commit) => commit.includes('init')],
extends: ['@commitlint/config-conventional'],
rules: {
'type-empty': [2, 'never'], // <type> 不能为空
'type-enum': [2, 'always', [...type]], // <type> 规定使用类型
'type-case': [0],
'scope-empty': [0], // <scope> 可为空
'scope-enum': [0, 'always', [...scopes]],
'subject-empty': [2, 'never'], // <subject> 不能为空 (默认)
'subject-full-stop': [2, 'never', '.'], // <subject> 结尾不加'.'
'subject-case': [0],
'header-max-length': [2, 'always', 102], // header最大102个字符
'body-leading-blank': [1, 'always'], // body上面要有换行
'footer-leading-blank': [1, 'always'], // footer上面要有换行
},
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/risun_2022/admin-juejin.git
git@gitee.com:risun_2022/admin-juejin.git
risun_2022
admin-juejin
Admin-Juejin
master

搜索帮助