From 34c2d5c1a9c9c3c2e7e1311286cc3b84a4f59781 Mon Sep 17 00:00:00 2001 From: Benoit Tigeot Date: Mon, 22 Sep 2025 23:19:07 +0200 Subject: [PATCH] Remove unused golangci-lint rules that produce warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Avoid this noisy output when running local linting: ```sh ❯ golangci-lint run ./... WARN [runner/exclusion_rules] Skipped 0 issues by rules: [Text: "var-naming: avoid meaningless package names", Linters: "revive"] ``` Signed-off-by: Benoit Tigeot --- .golangci.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 3df31b997..bf19e2838 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -42,11 +42,6 @@ linters: - legacy - std-error-handling - rules: - - linters: - - revive - text: 'var-naming: avoid meaningless package names' - warn-unused: true settings: