aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/polyfloyd
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-08-10 01:40:38 +0000
committerAleksandr Nogikh <nogikh@google.com>2023-08-10 08:15:09 +0000
commitc7f6fc5b21cf154fabe12125d2cd1b274c57cb53 (patch)
treece1c303a28a94d0096debb33d8bf853872ed1577 /vendor/github.com/polyfloyd
parent4df3089c378ffe870e094cb3088bcad17d16d02d (diff)
mod: do: bump github.com/golangci/golangci-lint from 1.53.3 to 1.54.0
Bumps [github.com/golangci/golangci-lint](https://github.com/golangci/golangci-lint) from 1.53.3 to 1.54.0. - [Release notes](https://github.com/golangci/golangci-lint/releases) - [Changelog](https://github.com/golangci/golangci-lint/blob/master/CHANGELOG.md) - [Commits](https://github.com/golangci/golangci-lint/compare/v1.53.3...v1.54.0) --- updated-dependencies: - dependency-name: github.com/golangci/golangci-lint dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to 'vendor/github.com/polyfloyd')
-rw-r--r--vendor/github.com/polyfloyd/go-errorlint/errorlint/allowed.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/vendor/github.com/polyfloyd/go-errorlint/errorlint/allowed.go b/vendor/github.com/polyfloyd/go-errorlint/errorlint/allowed.go
index 366b5c6b0..d4274b8a7 100644
--- a/vendor/github.com/polyfloyd/go-errorlint/errorlint/allowed.go
+++ b/vendor/github.com/polyfloyd/go-errorlint/errorlint/allowed.go
@@ -35,8 +35,15 @@ var allowedErrors = []struct {
{err: "io.EOF", fun: "(*bytes.Reader).ReadString"},
// pkg/database/sql
{err: "sql.ErrNoRows", fun: "(*database/sql.Row).Scan"},
+ // pkg/debug/elf
+ {err: "io.EOF", fun: "elf.Open"},
+ {err: "io.EOF", fun: "elf.NewFile"},
// pkg/io
{err: "io.EOF", fun: "(io.Reader).Read"},
+ {err: "io.EOF", fun: "(io.ReaderAt).ReadAt"},
+ {err: "io.EOF", fun: "(*io.LimitedReader).Read"},
+ {err: "io.EOF", fun: "(*io.SectionReader).Read"},
+ {err: "io.EOF", fun: "(*io.SectionReader).ReadAt"},
{err: "io.ErrClosedPipe", fun: "(*io.PipeWriter).Write"},
{err: "io.ErrShortBuffer", fun: "io.ReadAtLeast"},
{err: "io.ErrUnexpectedEOF", fun: "io.ReadAtLeast"},