diff --git a/.golangci.yml b/.golangci.yml index fe396a9..5c175e0 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -4,6 +4,7 @@ linters: disable: - cyclop # covered by gocyclo - depguard # newer versions require explicit config to depend on anything outside of the Go stdlib + - exhaustruct # replaced by exhaustruct_v5 - funlen # rely on code review to limit function length - godoclint # we run this separately since we use a fork - gocognit # dubious "cognitive overhead" quantification diff --git a/make/go/dep_golangci_lint.mk b/make/go/dep_golangci_lint.mk index aafbb05..a32975f 100644 --- a/make/go/dep_golangci_lint.mk +++ b/make/go/dep_golangci_lint.mk @@ -23,8 +23,8 @@ GOLANGCI_LINT_ARCH := $(UNAME_ARCH) endif # Settable -# https://github.com/golangci/golangci-lint/releases 20260819 checked 20260820 -GOLANGCI_LINT_VERSION ?= v2.13.0 +# https://github.com/golangci/golangci-lint/releases 20260820 checked 20260820 +GOLANGCI_LINT_VERSION ?= v2.13.1 GOLANGCI_LINT := $(CACHE_BIN)/golangci-lint