Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/golinters/lll/lll.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func getLLLIssuesForFile(filename string, maxLineLen int, tabSpaces string) ([]r
Filename: filename,
Line: lineNumber,
},
Text: fmt.Sprintf("line is %d characters", lineLen),
Text: fmt.Sprintf("the line is %d characters long, which exceeds the maximum of %d characters.", lineLen, maxLineLen),
FromLinter: linterName,
})
}
Expand Down
2 changes: 1 addition & 1 deletion test/run_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ func TestLineDirective(t *testing.T) {
},
configPath: "testdata/linedirective/lll.yml",
targetPath: "linedirective",
expected: "line is 57 characters (lll)",
expected: "the line is 57 characters long, which exceeds the maximum of 50 characters. (lll)",
},
{
desc: "misspell",
Expand Down