From 234f5ace6c0e6126342635e65d36fe550581af1e Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Wed, 11 Sep 2024 17:10:48 -0400 Subject: [PATCH] chore(lint): actually disable predeclared directive --- .golangci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index a096c2a3..1579210f 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -28,6 +28,7 @@ linters: - unconvert - unparam - whitespace - # We're disabling predeclared because the linter is running a newer version - # of Go than then Go module. - # - predeclared + # We're disabling predeclared because the linter is running a newer version + # of Go than then Go module. + disable: + - predeclared