We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca6ba04 commit d03abf3Copy full SHA for d03abf3
.golangci.yml
@@ -53,7 +53,11 @@ linters-settings:
53
#- pkg: "regexp"
54
# desc: "Use github.com/grafana/regexp instead of regexp"
55
errcheck:
56
- exclude: scripts/errcheck_excludes.txt
+ exclude-functions:
57
+ # The following 2 methods always return nil as the error
58
+ - (*github.com/cespare/xxhash/v2.Digest).Write
59
+ - (*github.com/cespare/xxhash/v2.Digest).WriteString
60
+ - (*bufio.Writer).WriteRune
61
goimports:
62
local-prefixes: github.com/prometheus/client_golang
63
gofumpt:
scripts/errcheck_excludes.txt
0 commit comments