From f25096d1b6dcd7cbdd40653bf25dcdc1846b022c Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Tue, 20 Aug 2024 15:18:14 -0400 Subject: [PATCH] chore(lint): disable 'predeclared' linter It seems to always run on the latest version of Go and we're finding false positives with its suggestions. --- .golangci-soft.yml | 1 + .golangci.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.golangci-soft.yml b/.golangci-soft.yml index 1b6824b..0170561 100644 --- a/.golangci-soft.yml +++ b/.golangci-soft.yml @@ -44,3 +44,4 @@ linters: - typecheck - unused - varcheck + - predeclared diff --git a/.golangci.yml b/.golangci.yml index 3affce9..43d348b 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -28,3 +28,4 @@ linters: - unconvert - unparam - whitespace + - predeclared