From 991f313a0bcf667241efb441726c23992e9792bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Irving=20Mondrag=C3=B3n?= Date: Sat, 14 Feb 2026 20:45:12 +0100 Subject: [PATCH] Fix revive var-naming lint for build and version packages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Irving Mondragón --- .golangci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.golangci.yml b/.golangci.yml index eb179dee4..c4d39468b 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -15,3 +15,7 @@ linters: text: "should have a package comment" linters: - revive + - path: pkg/shp/cmd/(build|version)/ + text: "var-naming: avoid package names that conflict with Go standard library package names" + linters: + - revive