Skip to content

Commit 0bf3705

Browse files
chore: apply code formatting
• Format emoji utility module (remove trailing newline) • Format config loader (improve line breaks for readability
1 parent 77296fc commit 0bf3705

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/lib/config/loader.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,10 @@ export class ConfigLoader {
355355
*/
356356
private detectEmojiSupport(config?: LabcommitrConfig): boolean {
357357
// User override takes highest priority
358-
if (config?.config.force_emoji_detection !== null && config?.config.force_emoji_detection !== undefined) {
358+
if (
359+
config?.config.force_emoji_detection !== null &&
360+
config?.config.force_emoji_detection !== undefined
361+
) {
359362
return config.config.force_emoji_detection;
360363
}
361364

src/lib/util/emoji.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,4 +136,3 @@ export function formatForDisplay(
136136
}
137137
return stripEmojis(text);
138138
}
139-

0 commit comments

Comments
 (0)