Files
MYXY_Web/.czrc.json

95 lines
3.0 KiB
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"cz-config": {
"enableMultipleScopes": true,
"scopes": {
"auth": "用户认证相关",
"user": "用户管理相关",
"game": "游戏功能相关",
"admin": "管理员功能相关",
"api": "API接口相关",
"ui": "用户界面相关",
"build": "构建系统相关",
"deps": "依赖管理相关",
"docs": "文档更新相关",
"style": "样式调整相关",
"test": "测试相关",
"refactor": "代码重构相关",
"perf": "性能优化相关",
"ci": "持续集成相关",
"other": "其他类型"
},
"types": [
{
"value": "feat",
"name": "✨ 功能特性: 新增功能或特性",
"detail": "代码实现了一个新的功能或特性包括新增页面、组件、API等"
},
{
"value": "fix",
"name": "🐛 问题修复: 修复已知问题",
"detail": "修复了代码中的错误、缺陷或异常行为"
},
{
"value": "docs",
"name": "📝 文档更新: 更新项目文档",
"detail": "更新了项目文档、README、注释等不涉及代码变更"
},
{
"value": "style",
"name": "🎨 样式调整: 代码格式美化",
"detail": "调整代码格式、样式、缩进、空格等,不影响功能逻辑"
},
{
"value": "refactor",
"name": "♻️ 重构优化: 代码结构重构",
"detail": "重构代码结构、简化逻辑、提升性能,但不改变功能"
},
{
"value": "perf",
"name": "⚡ 性能优化: 提升代码性能",
"detail": "优化代码性能、减少内存使用、提升运行速度"
},
{
"value": "test",
"name": "🧪 测试相关: 添加或修改测试",
"detail": "添加、修改或删除测试用例"
},
{
"value": "build",
"name": "🏗️ 构建系统: 构建配置变更",
"detail": "修改构建配置、依赖关系或构建脚本"
},
{
"value": "ci",
"name": "🚀 持续集成: CI/CD 流程更新",
"detail": "修改持续集成配置、部署流程等"
},
{
"value": "deps",
"name": "📦 依赖更新: 第三方依赖变更",
"detail": "添加、更新或移除第三方包依赖"
},
{
"value": "chore",
"name": "🔧 辅助工具: 工具或配置更新",
"detail": "修改构建脚本、开发工具、配置文件等"
},
{
"value": "revert",
"name": "⏪ 回滚操作: 撤销之前的变更",
"detail": "回滚到之前的代码版本或配置"
},
{
"value": "release",
"name": "🎉 发布版本: 版本发布",
"detail": "正式发布新版本或里程碑版本"
}
],
"subjectMaxLength": 72,
"bodyMaxLineWidth": 100,
"confirmColorize": true,
"defaultBody": "",
"defaultScope": "",
"defaultSubject": ""
}
}