From f4baaf877969cbdfe07594213f70f570ef2bd8e2 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 11 Feb 2026 09:48:17 +0100 Subject: [PATCH] chore(lint): ignore revive var-naming for stdlib-conflicting package names --- .golangci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.golangci.yml b/.golangci.yml index 4800096d9..eb225f272 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -147,6 +147,9 @@ linters: - revive path: pkg/utils/* text: 'var-naming: avoid meaningless package names' + - linters: + - revive + text: 'var-naming: avoid package names that conflict with Go standard library package names' paths: - third_party$ - builtin$