We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 808b680 commit cc2995cCopy full SHA for cc2995c
1 file changed
.github/workflows/analyze-code.yml
@@ -91,7 +91,7 @@ jobs:
91
92
if [[ "$HL" == *",$LANG,"* ]]; then
93
FORMATTED=$(format_number "$LINES")
94
- FORMATTED_BREAKDOWN+=$(printf "%s --> %s lines\n" "$LANG" "$FORMATTED")$'\n'
+ FORMATTED_BREAKDOWN+=$(printf "%-12s --> %10s lines\n" "$LANG" "$FORMATTED")$'\n'
95
else
96
OTHER_LINES=$((OTHER_LINES + LINES))
97
fi
@@ -106,7 +106,7 @@ jobs:
106
# Add Others (formatted)
107
if [[ $OTHER_LINES -gt 0 ]]; then
108
FORMATTED_OTHER=$(format_number "$OTHER_LINES")
109
- FORMATTED_BREAKDOWN+=$(printf "%s --> %s lines\n" "Others" "$FORMATTED_OTHER")$'\n'
+ FORMATTED_BREAKDOWN+=$(printf "%-12s --> %10s lines\n" "Others" "$FORMATTED_OTHER")$'\n'
110
111
112
# Format total ONCE (do not overwrite later)
0 commit comments