We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65d1da1 commit 47f1694Copy full SHA for 47f1694
src/ci/check_lines.ts
@@ -71,7 +71,7 @@ if (import.meta.main) {
71
72
const totalDiff = diff.reduce((sum, file) => sum + file.diff, 0)
73
const total = prStats.reduce((sum, file) => sum + file.lines, 0)
74
- console.log(`\nTotal lines: ${total} (${formatDiff(totalDiff)})`)
+ console.log(`\n**Total lines: ${total} (${formatDiff(totalDiff)})**` + (totalDiff < -100 ? ' 🔥' : ''))
75
} else {
76
// Regular mode - analyze a single directory
77
const files = await generateStats(Bun.argv[2])
0 commit comments