Skip to content

Commit

Permalink
Suppress dot-imports false positives from Revive.
Browse files Browse the repository at this point in the history
Stylecheck already lints dot imports better.
  • Loading branch information
sengi committed Dec 11, 2023
1 parent e40dc80 commit 41d69f0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ linters:
- wastedassign
- zerologlint
linters-settings:
revive:
rules:
- name: dot-imports
disabled: true # Covered by stylecheck.
stylecheck:
dot-import-whitelist:
- github.com/onsi/ginkgo/v2
Expand Down

0 comments on commit 41d69f0

Please sign in to comment.