From ae5cc1ab37bc4c698b027252140dd77808d5360f Mon Sep 17 00:00:00 2001 From: albertony <12441419+albertony@users.noreply.github.com> Date: Tue, 19 Aug 2025 15:03:11 +0200 Subject: [PATCH] build: ignore revive lint issue var-naming: avoid meaningless package names --- backend/union/common/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/union/common/options.go b/backend/union/common/options.go index edc715203..05d6cb8e4 100644 --- a/backend/union/common/options.go +++ b/backend/union/common/options.go @@ -1,7 +1,7 @@ // Package common defines code common to the union and the policies // // These need to be defined in a separate package to avoid import loops -package common +package common //nolint:revive // Don't include revive when running golangci-lint because this triggers var-naming: avoid meaningless package names import "github.com/rclone/rclone/fs"