Skip to content

Commit

Permalink
refactor: added newline to explanation
Browse files Browse the repository at this point in the history
The newline at the end of the explanation will make is so that the wall of text that you get with several issues get a bit of space. This does not effect the JSON output, only the regular output.

closes #101

Signed-off-by: Roberth Strand <me@robstr.dev>
  • Loading branch information
roberthstrand committed Mar 31, 2023
1 parent 172c2df commit c0aebb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/analyze/analyze.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ var AnalyzeCmd = &cobra.Command{
for _, err := range analysis.Error {
fmt.Printf("- %s %s\n", color.RedString("Error:"), color.RedString(err))
}
color.GreenString(analysis.Details)
color.GreenString(analysis.Details + "\n")
}
}
},
Expand Down

0 comments on commit c0aebb2

Please sign in to comment.