@@ -54,6 +54,8 @@ enum CommitType {
54
54
enum MoreInfoCommit {
55
55
// 🎨
56
56
CodeStyle ,
57
+ // 💅
58
+ Formatted ,
57
59
// ⚡️
58
60
Performance ,
59
61
// 🐛
@@ -181,9 +183,7 @@ impl MoreInfoCommit {
181
183
MoreInfoCommit :: Down => ( "⬇️" , "downgrade" , "Down" ) ,
182
184
MoreInfoCommit :: Up => ( "⬆️" , "upgrade" , "Up" ) ,
183
185
MoreInfoCommit :: CI => ( "👷" , "" , "CI related" ) ,
184
- MoreInfoCommit :: Refactor => {
185
- ( "♻️" , "" , "Refactor related" )
186
- }
186
+ MoreInfoCommit :: Refactor => ( "♻️" , "" , "Refactor related" ) ,
187
187
MoreInfoCommit :: TrackCode => {
188
188
( "📈" , "track" , "Tracking code" )
189
189
}
@@ -254,6 +254,7 @@ impl MoreInfoCommit {
254
254
MoreInfoCommit :: Validation => {
255
255
( "🦺" , "validation" , "Validation" )
256
256
}
257
+ MoreInfoCommit :: Formatted => ( "💅" , "fmt" , "Formatted" ) ,
257
258
}
258
259
}
259
260
}
@@ -265,15 +266,15 @@ impl CommitType {
265
266
vec ! [
266
267
MoreInfoCommit :: Bug ,
267
268
MoreInfoCommit :: CriticalBug ,
268
- MoreInfoCommit :: Security ,
269
+ MoreInfoCommit :: QuickFix ,
269
270
MoreInfoCommit :: Warning ,
270
- MoreInfoCommit :: TrackCode ,
271
271
MoreInfoCommit :: Typo ,
272
272
MoreInfoCommit :: TextLiteral ,
273
+ MoreInfoCommit :: Security ,
274
+ MoreInfoCommit :: TrackCode ,
273
275
MoreInfoCommit :: ExternalDependencyChange ,
274
276
MoreInfoCommit :: DatabaseRelated ,
275
277
MoreInfoCommit :: Authorization ,
276
- MoreInfoCommit :: QuickFix ,
277
278
MoreInfoCommit :: HealthCheck ,
278
279
MoreInfoCommit :: Business ,
279
280
MoreInfoCommit :: Infra ,
@@ -295,24 +296,24 @@ impl CommitType {
295
296
MoreInfoCommit :: Validation ,
296
297
] ,
297
298
CommitType :: Chore | CommitType :: Refactor => vec ! [
298
- MoreInfoCommit :: Security ,
299
299
MoreInfoCommit :: Refactor ,
300
- MoreInfoCommit :: TrackCode ,
301
- MoreInfoCommit :: Internationalization ,
300
+ MoreInfoCommit :: ArchitecturalChanges ,
302
301
MoreInfoCommit :: RenameResources ,
303
- MoreInfoCommit :: Accessibility ,
304
- MoreInfoCommit :: Readme ,
305
- MoreInfoCommit :: License ,
302
+ MoreInfoCommit :: RemoveLogs ,
306
303
MoreInfoCommit :: TextLiteral ,
304
+ MoreInfoCommit :: RemoveDeadCode ,
307
305
MoreInfoCommit :: DatabaseRelated ,
308
- MoreInfoCommit :: RemoveLogs ,
306
+ MoreInfoCommit :: Security ,
307
+ MoreInfoCommit :: Readme ,
308
+ MoreInfoCommit :: License ,
309
309
MoreInfoCommit :: ImproveExperience ,
310
- MoreInfoCommit :: ArchitecturalChanges ,
310
+ MoreInfoCommit :: TrackCode ,
311
+ MoreInfoCommit :: Internationalization ,
312
+ MoreInfoCommit :: Accessibility ,
311
313
MoreInfoCommit :: GitIgnore ,
312
314
MoreInfoCommit :: Flag ,
313
315
MoreInfoCommit :: Trash ,
314
316
MoreInfoCommit :: Authorization ,
315
- MoreInfoCommit :: RemoveDeadCode ,
316
317
MoreInfoCommit :: Business ,
317
318
MoreInfoCommit :: Infra ,
318
319
MoreInfoCommit :: Validation ,
@@ -351,15 +352,16 @@ impl CommitType {
351
352
}
352
353
CommitType :: Style => {
353
354
vec ! [
355
+ MoreInfoCommit :: Formatted ,
354
356
MoreInfoCommit :: CodeStyle ,
355
357
MoreInfoCommit :: UI ,
356
358
MoreInfoCommit :: ImproveExperience ,
357
359
]
358
360
}
359
361
CommitType :: Build => vec ! [ MoreInfoCommit :: CI ] ,
360
362
CommitType :: Debug => vec ! [
361
- MoreInfoCommit :: TrackCode ,
362
363
MoreInfoCommit :: AddLogs ,
364
+ MoreInfoCommit :: TrackCode ,
363
365
MoreInfoCommit :: HealthCheck ,
364
366
MoreInfoCommit :: RemoveLogs ,
365
367
] ,
0 commit comments