Skip to content

Update golangci to 1.58.2

Ash McKenzie requested to merge ashmckenzie/update-golangci-lint-2 into main

This MR updates golangci to 1.58.2 and fixes a deprecation warning:

Before

$ make lint
support/bin/golangci-lint-1.58.2 --version
golangci-lint has version 1.58.2 built with go1.22.3 from 8c4cfb61 on 2024-05-19T18:08:33Z
support/bin/golangci-lint-1.58.2 run --issues-exit-code 0 --print-issued-lines=false
WARN [config_reader] The configuration option `linters.errcheck.ignore` is deprecated, please use `linters.errcheck.exclude-functions`.
--snip--

After

$ make lint
support/bin/golangci-lint-1.58.2 --version
golangci-lint has version 1.58.2 built with go1.22.3 from 8c4cfb61 on 2024-05-19T18:08:33Z
support/bin/golangci-lint-1.58.2 run --issues-exit-code 0 --print-issued-lines=false
--snip--
Edited by Ash McKenzie

Merge request reports