Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions make/go/dep_golangci_lint.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading