forked from seatonjiang/gitmoji-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitmoji.ts
378 lines (375 loc) Β· 9.73 KB
/
gitmoji.ts
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
// Links: https://github.com/carloscuesta/gitmoji/blob/master/src/data/gitmojis.json
import * as vscode from 'vscode';
interface gitmojiList {
readonly emoji: any;
readonly code: any;
readonly description: any;
}
let Gitmoji: Array<gitmojiList> = [
{
emoji: 'π¨',
code: ':art:',
description: vscode.l10n.t('Improve structure/format of the code'),
},
{
emoji: 'β‘οΈ',
code: ':zap:',
description: vscode.l10n.t('Improve performance'),
},
{
emoji: 'π₯',
code: ':fire:',
description: vscode.l10n.t('Remove code or files'),
},
{
emoji: 'π',
code: ':bug:',
description: vscode.l10n.t('Fix a bug'),
},
{
emoji: 'π',
code: ':ambulance:',
description: vscode.l10n.t('Critical hotfix'),
},
{
emoji: 'β¨',
code: ':sparkles:',
description: vscode.l10n.t('Introduce new features'),
},
{
emoji: 'π',
code: ':memo:',
description: vscode.l10n.t('Add or update documentation'),
},
{
emoji: 'π',
code: ':rocket:',
description: vscode.l10n.t('Deploy stuff'),
},
{
emoji: 'π',
code: ':lipstick:',
description: vscode.l10n.t('Add or update the UI and style files'),
},
{
emoji: 'π',
code: ':tada:',
description: vscode.l10n.t('Begin a project'),
},
{
emoji: 'β
',
code: ':white_check_mark:',
description: vscode.l10n.t('Add, update, or pass tests'),
},
{
emoji: 'ποΈ',
code: ':lock:',
description: vscode.l10n.t('Fix security issues'),
},
{
emoji: 'π',
code: ':closed_lock_with_key:',
description: vscode.l10n.t('Add or update secrets'),
},
{
emoji: 'π',
code: ':bookmark:',
description: vscode.l10n.t('Release/Version tags'),
},
{
emoji: 'π¨',
code: ':rotating_light:',
description: vscode.l10n.t('Fix compiler/linter warnings'),
},
{
emoji: 'π§',
code: ':construction:',
description: vscode.l10n.t('Work in progress'),
},
{
emoji: 'π',
code: ':green_heart:',
description: vscode.l10n.t('Fix CI Build'),
},
{
emoji: 'β¬οΈ',
code: ':arrow_down:',
description: vscode.l10n.t('Downgrade dependencies'),
},
{
emoji: 'β¬οΈ',
code: ':arrow_up:',
description: vscode.l10n.t('Upgrade dependencies'),
},
{
emoji: 'π',
code: ':pushpin:',
description: vscode.l10n.t('Pin dependencies to specific versions'),
},
{
emoji: 'π·',
code: ':construction_worker:',
description: vscode.l10n.t('Add or update CI build system'),
},
{
emoji: 'π',
code: ':chart_with_upwards_trend:',
description: vscode.l10n.t('Add or update analytics or track code'),
},
{
emoji: 'β»οΈ',
code: ':recycle:',
description: vscode.l10n.t('Refactor code'),
},
{
emoji: 'β',
code: ':heavy_plus_sign:',
description: vscode.l10n.t('Add a dependency'),
},
{
emoji: 'β',
code: ':heavy_minus_sign:',
description: vscode.l10n.t('Remove a dependency'),
},
{
emoji: 'π§',
code: ':wrench:',
description: vscode.l10n.t('Add or update configuration files'),
},
{
emoji: 'π¨',
code: ':hammer:',
description: vscode.l10n.t('Add or update development scripts'),
},
{
emoji: 'π',
code: ':globe_with_meridians:',
description: vscode.l10n.t('Internationalization and localization'),
},
{
emoji: 'βοΈ',
code: ':pencil2:',
description: vscode.l10n.t('Fix typos'),
},
{
emoji: 'π©',
code: ':poop:',
description: vscode.l10n.t('Write bad code that needs to be improved'),
},
{
emoji: 'βͺ',
code: ':rewind:',
description: vscode.l10n.t('Revert changes'),
},
{
emoji: 'π',
code: ':twisted_rightwards_arrows:',
description: vscode.l10n.t('Merge branches'),
},
{
emoji: 'π¦',
code: ':package:',
description: vscode.l10n.t('Add or update compiled files or packages'),
},
{
emoji: 'π½οΈ',
code: ':alien:',
description: vscode.l10n.t('Update code due to external API changes'),
},
{
emoji: 'π',
code: ':truck:',
description: vscode.l10n.t('Move or rename resources (e.g.: files, paths, routes)'),
},
{
emoji: 'π',
code: ':page_facing_up:',
description: vscode.l10n.t('Add or update license'),
},
{
emoji: 'π₯',
code: ':boom:',
description: vscode.l10n.t('Introduce breaking changes'),
},
{
emoji: 'π±',
code: ':bento:',
description: vscode.l10n.t('Add or update assets'),
},
{
emoji: 'βΏοΈ',
code: ':wheelchair:',
description: vscode.l10n.t('Improve accessibility'),
},
{
emoji: 'π‘',
code: ':bulb:',
description: vscode.l10n.t('Add or update comments in source code'),
},
{
emoji: 'π»',
code: ':beers:',
description: vscode.l10n.t('Write code drunkenly'),
},
{
emoji: 'π¬',
code: ':speech_balloon:',
description: vscode.l10n.t('Add or update text and literals'),
},
{
emoji: 'ποΈ',
code: ':card_file_box:',
description: vscode.l10n.t('Perform database related changes'),
},
{
emoji: 'π',
code: ':loud_sound:',
description: vscode.l10n.t('Add or update logs'),
},
{
emoji: 'π',
code: ':mute:',
description: vscode.l10n.t('Remove logs'),
},
{
emoji: 'π₯',
code: ':busts_in_silhouette:',
description: vscode.l10n.t('Add or update contributor(s)'),
},
{
emoji: 'πΈ',
code: ':children_crossing:',
description: vscode.l10n.t('Improve user experience/usability'),
},
{
emoji: 'ποΈ',
code: ':building_construction:',
description: vscode.l10n.t('Make architectural changes'),
},
{
emoji: 'π±',
code: ':iphone:',
description: vscode.l10n.t('Work on responsive design'),
},
{
emoji: 'π€‘',
code: ':clown_face:',
description: vscode.l10n.t('Mock things'),
},
{
emoji: 'π₯',
code: ':egg:',
description: vscode.l10n.t('Add or update an easter egg'),
},
{
emoji: 'π',
code: ':see_no_evil:',
description: vscode.l10n.t('Add or update a .gitignore file'),
},
{
emoji: 'πΈ',
code: ':camera_flash:',
description: vscode.l10n.t('Add or update snapshots'),
},
{
emoji: 'βοΈ',
code: ':alembic:',
description: vscode.l10n.t('Perform experiments'),
},
{
emoji: 'π',
code: ':mag:',
description: vscode.l10n.t('Improve SEO'),
},
{
emoji: 'π·οΈ',
code: ':label:',
description: vscode.l10n.t('Add or update types'),
},
{
emoji: 'π±',
code: ':seedling:',
description: vscode.l10n.t('Add or update seed files'),
},
{
emoji: 'π©',
code: ':triangular_flag_on_post:',
description: vscode.l10n.t('Add, update, or remove feature flags'),
},
{
emoji: 'π₯
',
code: ':goal_net:',
description: vscode.l10n.t('Catch errors'),
},
{
emoji: 'π«',
code: ':dizzy:',
description: vscode.l10n.t('Add or update animations and transitions'),
},
{
emoji: 'ποΈ',
code: ':wastebasket:',
description: vscode.l10n.t('Deprecate code that needs to be cleaned up'),
},
{
emoji: 'π',
code: ':passport_control:',
description: vscode.l10n.t('Work on code related to authorization, roles and permissions'),
},
{
emoji: 'π©Ή',
code: ':adhesive_bandage:',
description: vscode.l10n.t('Simple fix for a non-critical issue'),
},
{
emoji: 'π§',
code: ':monocle_face:',
description: vscode.l10n.t('Data exploration/inspection'),
},
{
emoji: 'β°οΈ',
code: ':coffin:',
description: vscode.l10n.t('Remove dead code'),
},
{
emoji: 'π§ͺ',
code: ':test_tube:',
description: vscode.l10n.t('Add a failing test'),
},
{
emoji: 'π',
code: ':necktie:',
description: vscode.l10n.t('Add or update business logic'),
},
{
emoji: 'π©Ί',
code: ':stethoscope:',
description: vscode.l10n.t('Add or update healthcheck'),
},
{
emoji: 'π§±',
code: ':bricks:',
description: vscode.l10n.t('Infrastructure related changes'),
},
{
emoji: 'π§βπ»',
code: ':technologist:',
description: vscode.l10n.t('Improve developer experience'),
},
{
emoji: 'πΈ',
code: ':money_with_wings:',
description: vscode.l10n.t('Add sponsorships or money related infrastructure'),
},
{
emoji: 'π§΅',
code: ':thread:',
description: vscode.l10n.t('Add or update code related to multithreading or concurrency'),
},
{
emoji: 'π¦Ί',
code: ':safety_vest:',
description: vscode.l10n.t('Add or update code related to validation'),
},
];
export default Gitmoji;