From 1c73fafe88f9a47c599d1d8107d2e7fc3c95909e Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 18 Feb 2026 03:29:19 +0000 Subject: Fix CI failure: Remove redundant 'disable' list in .golangci.yml - Removed the `disable` list from `.golangci.yml`. - `disable-all: true` conflicts with specifying a list of linters to `disable`. - Since we are already disabling all linters and then enabling specific ones, explicitly disabling `errcheck` is unnecessary and invalid configuration. Co-authored-by: adammathes <868470+adammathes@users.noreply.github.com> --- .golangci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index ba50665..6b0cd40 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -4,8 +4,6 @@ run: linters: disable-all: true - disable: - - errcheck enable: - staticcheck - govet -- cgit v1.2.3