From 82ebfbd9b96e64707115156e1f649b0b48309858 Mon Sep 17 00:00:00 2001 From: Francis Lavoie Date: Mon, 19 Feb 2024 22:28:22 -0500 Subject: [PATCH] nolint false positive --- lexers/caddyfile.go | 1 + 1 file changed, 1 insertion(+) diff --git a/lexers/caddyfile.go b/lexers/caddyfile.go index b65ea3dec..82a7efa48 100644 --- a/lexers/caddyfile.go +++ b/lexers/caddyfile.go @@ -8,6 +8,7 @@ import ( // Named matcher: @name, or // Path matcher: /foo, or // Wildcard path matcher: * +// nolint: gosec var caddyfileMatcherTokenRegexp = `(\[\\]|@[^\s]+|/[^\s]+|\*)` // Comment at start of line, or