We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3a7eac commit 5ee1016Copy full SHA for 5ee1016
internal/cmd/root.go
@@ -421,6 +421,17 @@ func displayStatsSummary(stats *StatsCollector, outputFormat string) {
421
}
422
423
func displayTableStats(stats *StatsCollector) {
424
+ // ANSI color helpers
425
+ green := "\033[32m"
426
+ yellow := "\033[33m"
427
+ reset := "\033[0m"
428
+ colorize := func(s, color string) string {
429
+ if noColor {
430
+ return s
431
+ }
432
+ return color + s + reset
433
434
+
435
// Find max repo name length
436
maxRepoLen := len("Repository")
437
for _, repoStat := range stats.PerRepoStats {
0 commit comments