Skip to content

Commit

Permalink
Fixed small linting issue
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Shanley <[email protected]>
  • Loading branch information
daveshanley committed Jul 6, 2023
1 parent a10fc9e commit ff51a2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/lint.go
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,8 @@ func processResults(results []*model.RuleFunctionResult, specData []string, snip
p = fmt.Sprintf("%s...", r.Path[:60])
}

if len(r.Message) > 100 {
//m = fmt.Sprintf("%s...", r.Message[:100])
if len(r.Message) > 180 {
m = fmt.Sprintf("%s...", r.Message[:180])
}

sev := "nope"
Expand Down

0 comments on commit ff51a2a

Please sign in to comment.