Skip to content

Commit

Permalink
golangci.yml: skip some tests
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
  • Loading branch information
thaJeztah committed Jun 10, 2021
1 parent ea74765 commit 22ce0f8
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion hack/validate/golangci-lint.yml
Expand Up @@ -81,6 +81,10 @@ issues:
- text: "(G201|G202): SQL string (formatting|concatenation)"
linters:
- gosec
# FIXME: evaluate these and fix where needed: G307: Deferring unsafe method "*os.File" on type "Close" (gosec)
- text: "G307: Deferring unsafe method"
linters:
- gosec
# FIXME temporarily suppress these. See #39924
- text: "SA1019: .*\\.Xattrs is deprecated: Use PAXRecords instead"
linters:
Expand All @@ -93,6 +97,11 @@ issues:
- text: "SA1019: httputil.ErrPersistEOF"
linters:
- staticcheck
# FIXME temporarily suppress these for false positives in tests (see https://github.com/dominikh/go-tools/issues/1022)
- text: "SA5011"
path: _test\.go
linters:
- staticcheck
# This code is doing some fun stuff with reflect and it trips up the linter.
- text: "field `foo` is unused"
path: "libnetwork/options/options_test.go"
Expand All @@ -105,4 +114,4 @@ issues:
path: libnetwork/network.go
linters:
- structcheck
- unused
- unused

0 comments on commit 22ce0f8

Please sign in to comment.