.git-cz.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "disableEmoji": false,
  3. "list": ["test", "feat", "fix", "chore", "docs", "refactor", "style", "ci", "perf", "release", "revert", "build"],
  4. "maxMessageLength": 64,
  5. "minMessageLength": 3,
  6. "questions": ["type", "scope", "subject", "body", "breaking", "issues", "lerna"],
  7. "scopes": [],
  8. "types": {
  9. "chore": {
  10. "description": "Chore | 构建/工程依赖/工具",
  11. "emoji": "🚀",
  12. "value": "chore"
  13. },
  14. "ci": {
  15. "description": "Continuous Integration | CI 配置",
  16. "emoji": "👷",
  17. "value": "ci"
  18. },
  19. "docs": {
  20. "description": "Documentation | 文档",
  21. "emoji": "✏️ ",
  22. "value": "docs"
  23. },
  24. "feat": {
  25. "description": "Features | 新功能",
  26. "emoji": "✨",
  27. "value": "feat"
  28. },
  29. "fix": {
  30. "description": "Bug Fixes | Bug 修复",
  31. "emoji": "🐛",
  32. "value": "fix"
  33. },
  34. "perf": {
  35. "description": "Performance Improvements | 性能优化",
  36. "emoji": "⚡",
  37. "value": "perf"
  38. },
  39. "refactor": {
  40. "description": "Code Refactoring | 代码重构",
  41. "emoji": "♻️ ",
  42. "value": "refactor"
  43. },
  44. "release": {
  45. "description": "Create a release commit | 发版提交",
  46. "emoji": "🏹",
  47. "value": "release"
  48. },
  49. "style": {
  50. "description": "Styles | 风格",
  51. "emoji": "💄",
  52. "value": "style"
  53. },
  54. "revert": {
  55. "description": "Revert | 回退",
  56. "emoji": "⏪",
  57. "value": "revert"
  58. },
  59. "build": {
  60. "description": "Build System | 打包构建",
  61. "emoji": "📦",
  62. "value": "build"
  63. },
  64. "test": {
  65. "description": "Tests | 测试",
  66. "emoji": "✅",
  67. "value": "test"
  68. }
  69. }
  70. }