Skip to content

Commit

Permalink
fix linters errors
Browse files Browse the repository at this point in the history
  • Loading branch information
a-menshchikov committed Nov 12, 2024
1 parent ec9a404 commit 9bd6059
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 11 deletions.
2 changes: 1 addition & 1 deletion closer/closer.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func New(ctx context.Context, signals ...os.Signal) *closer {
}

<-ctx.Done()
c.CloseAll()
c.CloseAll() //nolint:contextcheck
}()

return c
Expand Down
5 changes: 0 additions & 5 deletions ctxkey/.golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,6 @@ linters-settings:
- sliceClear
- stringXbytes

gofmt:
rewrite-rules:
- pattern: 'interface{}'
replacement: 'any'

gosec:
excludes:
# _ instead of err checks
Expand Down
5 changes: 0 additions & 5 deletions time/.golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,6 @@ linters-settings:
- sliceClear
- stringXbytes

gofmt:
rewrite-rules:
- pattern: 'interface{}'
replacement: 'any'

gosec:
excludes:
# _ instead of err checks
Expand Down

0 comments on commit 9bd6059

Please sign in to comment.