Skip to content

Commit

Permalink
feat: rename deprecated vet -> govet
Browse files Browse the repository at this point in the history
Ignore `shadow` and `fieldalignment` govet rules
  • Loading branch information
rriski committed Sep 3, 2024
1 parent d3662b7 commit 273160a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,16 @@ linters:
- staticcheck
- unconvert
- unused
- vet
- goimports
- govet
- mnd

linters-settings:
govet:
enable-all: true
disable:
- fieldalignment
- shadow

run:
timeout: 10m

0 comments on commit 273160a

Please sign in to comment.