We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac8b1c9 commit f7a10c9Copy full SHA for f7a10c9
.golangci.yml
@@ -15,6 +15,11 @@ linters-settings:
15
check-type-assertions: true
16
check-blank: true
17
disable-default-exclusions: true
18
+ exclude-functions:
19
+ - '(*bytes.Buffer).Write' # always returns nil error
20
+ - '(*github.com/valyala/bytebufferpool.ByteBuffer).Write' # always returns nil error
21
+ - '(*github.com/valyala/bytebufferpool.ByteBuffer).WriteByte' # always returns nil error
22
+ - '(*github.com/valyala/bytebufferpool.ByteBuffer).WriteString' # always returns nil error
23
24
errchkjson:
25
report-no-exported: true
0 commit comments