From 064a3e3e71aea63ce2b476aeba68b0d8e4d36118 Mon Sep 17 00:00:00 2001 From: John Boyes Date: Sat, 10 Feb 2024 10:57:45 +0000 Subject: [PATCH] Exclude line from line length linter warning --- internal/github/pullrequest/labels.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/github/pullrequest/labels.go b/internal/github/pullrequest/labels.go index c6544afb..0e525327 100644 --- a/internal/github/pullrequest/labels.go +++ b/internal/github/pullrequest/labels.go @@ -27,7 +27,7 @@ func (l Labels) HasNoneOf(specified []string, prefixMode bool) (bool, string) { // all of the specified labels, along with a report describing the result. func (l Labels) HasAllOf(specified []string, prefixMode bool) (bool, string) { if prefixMode { - return false, "The label checker does not support prefix checking with `all_of`, as that is not a logical combination." + return false, "The label checker does not support prefix checking with `all_of`, as that is not a logical combination." //nolint:lll } return l.hasXof(specified, "all", prefixMode) }