Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,10 @@ linters:
# 'default' case is present, even if all enum members aren't listed in the
# switch
default-signifies-exhaustive: true
gomodguard:
gomodguard_v2:
blocked:
modules:
- github.com/pkg/errors:
reason: Obsolete after the 1.13 release; use the standard `errors` package
- module: github.com/pkg/errors
reason: Obsolete after the 1.13 release; use the standard `errors` package
revive:
rules:
- name: duplicated-imports
Expand Down Expand Up @@ -72,7 +71,7 @@ linters:
- durationcheck
- errorlint
- exhaustive
- gomodguard
- gomodguard_v2
- intrange
- misspell
- predeclared
Expand Down
Loading