aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgoogle-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>2026-02-18 03:29:19 +0000
committergoogle-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>2026-02-18 03:29:19 +0000
commit1c73fafe88f9a47c599d1d8107d2e7fc3c95909e (patch)
treeb9d741625f48815ee49c35ffeea0d1dc91b540c2
parentc34d119c25c46da78ed7d62a61790b144c7fec16 (diff)
downloadneko-1c73fafe88f9a47c599d1d8107d2e7fc3c95909e.tar.gz
neko-1c73fafe88f9a47c599d1d8107d2e7fc3c95909e.tar.bz2
neko-1c73fafe88f9a47c599d1d8107d2e7fc3c95909e.zip
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>
-rw-r--r--.golangci.yml2
1 files changed, 0 insertions, 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