Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ linters:
- errchkjson
- errorlint
- exhaustive
- forbidigo
- ginkgolinter
- goconst
- gocritic
Expand All @@ -41,6 +42,12 @@ linters:
- unused
- whitespace
settings:
forbidigo:
forbid:
- pattern: context.Background
msg: Use ginkgos SpecContext or go testings t.Context instead
- pattern: context.TODO
msg: Use ginkgos SpecContext or go testings t.Context instead
govet:
disable:
- fieldalignment
Expand Down