This repository has been archived by the owner on Apr 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.czrc
149 lines (149 loc) · 3.66 KB
/
.czrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"alias": {
"fd": "docs: fix typos"
},
"types": [
{
"value": "feat",
"name": "✨ feat:\tAdding a new feature",
"emoji": ":sparkles:"
},
{
"value": "fix",
"name": "🐛 fix:\tFixing a bug",
"emoji": ":bug:"
},
{
"value": "wip",
"name": "🚧 wip:\tWork in progress",
"emoji": ":construction:"
},
{
"value": "style",
"name": "💄 style:\tAdd or update styles, ui or ux",
"emoji": ":lipstick:"
},
{
"value": "refactor",
"name": "♻️ refactor:\tCode change that neither fixes a bug nor adds a feature",
"emoji": ":recycle:"
},
{
"value": "docs",
"name": "📝 docs:\tAdd or update documentation",
"emoji": ":memo:"
},
{
"value": "perf",
"name": "⚡️ perf:\tCode change that improves performance",
"emoji": ":zap:"
},
{
"value": "test",
"name": "✅ test:\tAdding tests cases",
"emoji": ":white_check_mark:"
},
{
"value": "revert",
"name": "⏪️ revert:\tRevert to a commit",
"emoji": ":rewind:"
},
{
"value": "build",
"name": "👷 build:\tAdd or update regards to build process",
"emoji": ":construction_worker:"
},
{
"value": "ci",
"name": "🐎 ci:\tAdd or update regards to CI process",
"emoji": ":racehorse:"
},
{
"value": "chore",
"name": "🤖 chore:\tAdd or update regards to chores",
"emoji": ":robot:"
},
{
"value": "types",
"name": "🏷️ types:\tAdd or update regards to types",
"emoji": ":label:"
},
{
"value": "release",
"name": "🔖 release:\tRelease a new version",
"emoji": ":bookmark:"
}
],
"scopes": [
{
"name": "all platforms"
},
{
"name": "desktop"
},
{
"name": "mobile"
},
{
"name": "packages"
},
{
"name": "unit test"
},
{
"name": "settings"
},
{
"name": "code convention"
}
],
"messages": {
"type": "********* 🎼🎧🎉 Select the type of change that you're committing *********",
"scope": "\n😪 Denote the SCOPE of this change (optional):",
"customScope": "🎁 Denote the SCOPE of this change:",
"subject": "🔖 Subject - Write a SHORT, IMPERATIVE tense description of the change:\n",
"body": "📝 Body - Provide a LONGER description of the change (optional). Use \"|\" to break new line:\n",
"breaking": "💥 List any BREAKING CHANGES (optional):\n",
"footer": "🔚 List any ISSUES CLOSED by this change (optional). E.g.: #31, #34:\n",
"confirmCommit": "😄 Are you sure you want to proceed with the commit above?"
},
"useEmoji": false,
"emojiAlign": "left",
"useAI": false,
"aiNumber": 1,
"themeColorCode": "",
"allowCustomScopes": true,
"allowEmptyScopes": true,
"customScopesAlign": "bottom",
"customScopesAlias": "custom",
"emptyScopesAlias": "empty",
"upperCaseSubject": false,
"markBreakingChangeMode": false,
"allowBreakingChanges": [
"feat",
"fix"
],
"breaklineNumber": 100,
"breaklineChar": "|",
"skipQuestions": [],
"issuePrefixes": [
{
"value": "closed",
"name": "closed: ISSUES has been processed"
}
],
"customIssuePrefixAlign": "top",
"emptyIssuePrefixAlias": "skip",
"customIssuePrefixAlias": "custom",
"allowCustomIssuePrefix": true,
"allowEmptyIssuePrefix": true,
"confirmColorize": true,
"maxHeaderLength": Infinity,
"maxSubjectLength": 100,
"minSubjectLength": 0,
"scopeOverrides": undefined,
"defaultBody": "",
"defaultIssues": "",
"defaultScope": "",
"defaultSubject": ""
}