We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f642c26 + f411a65 commit 979dcc4Copy full SHA for 979dcc4
2 files changed
.golangci.yml
@@ -18,12 +18,11 @@ linters:
18
19
linters-settings:
20
depguard:
21
- list-type: blacklist
22
- include-go-root: true
23
- packages:
24
- # The io/ioutil package has been deprecated.
25
- # https://go.dev/doc/go1.16#ioutil
26
- - io/ioutil
+ rules:
+ main:
+ deny:
+ - pkg: "io/ioutil"
+ desc: The io/ioutil package has been deprecated. See https://go.dev/doc/go1.16#ioutil
27
28
issues:
29
exclude-rules:
Dockerfile
@@ -3,7 +3,7 @@
3
ARG GO_VERSION=1.20.6
4
ARG XX_VERSION=1.2.1
5
ARG OSXCROSS_VERSION=11.3-r7-debian
6
-ARG GOLANGCI_LINT_VERSION=v1.51.1
+ARG GOLANGCI_LINT_VERSION=v1.55.2
7
ARG DEBIAN_FRONTEND=noninteractive
8
9
ARG PACKAGE=github.com/docker/docker-credential-helpers
0 commit comments