diff --git a/.golangci.yml b/.golangci.yml index 6174a523..7f969d48 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -12,7 +12,8 @@ run: # output configuration options output: # colored-line-number|line-number|json|tab|checkstyle|code-climate, default is "colored-line-number" - format: tab + formats: + - format: tab # all available settings of specific linters linters-settings: diff --git a/Makefile b/Makefile index e074da22..675fb770 100755 --- a/Makefile +++ b/Makefile @@ -4,8 +4,8 @@ REPO ?= $(shell go list -m) VERSION ?= $(shell git describe --tags --dirty --match "v*" --always --abbrev=8 2>/dev/null || cat VERSION 2>/dev/null || echo "develop") GO_VERSION ?= 1.22 -LINT_VERSION ?= 1.56.1 -TRUECLOUDLAB_LINT_VERSION ?= 0.0.5 +LINT_VERSION ?= 1.60.1 +TRUECLOUDLAB_LINT_VERSION ?= 0.0.6 BINDIR = bin METRICS_DUMP_OUT ?= ./metrics-dump.json diff --git a/internal/frostfs/policy/contract/contract.go b/internal/frostfs/policy/contract/contract.go index eac4ea64..97f97de5 100644 --- a/internal/frostfs/policy/contract/contract.go +++ b/internal/frostfs/policy/contract/contract.go @@ -189,7 +189,7 @@ func (m *multiTX) wrapCall(method string, args []any) { if err == nil { return } - if !errors.Is(commonclient.ErrTransactionTooLarge, err) { + if !errors.Is(err, commonclient.ErrTransactionTooLarge) { m.err = err return }