We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb7687a commit aa276a5Copy full SHA for aa276a5
pkg/analysis/output.go
@@ -78,8 +78,10 @@ func (a *Analysis) textOutput() ([]byte, error) {
78
return []byte(output.String()), nil
79
}
80
for n, result := range a.Results {
81
- output.WriteString(fmt.Sprintf("%s %s(%s)\n", color.CyanString("%d", n),
82
- color.YellowString(result.Name), color.CyanString(result.ParentObject)))
+ output.WriteString(fmt.Sprintf("%s: %s %s(%s)\n", color.CyanString("%d", n),
+ color.HiYellowString(result.Kind),
83
+ color.YellowString(result.Name),
84
+ color.CyanString(result.ParentObject)))
85
for _, err := range result.Error {
86
output.WriteString(fmt.Sprintf("- %s %s\n", color.RedString("Error:"), color.RedString(err.Text)))
87
if err.KubernetesDoc != "" {
0 commit comments