Merge pull request #1825 from mmorel-35/golangci-lint/govet

chore: enable govet linter
pull/1843/head
shirou 2 weeks ago committed by GitHub
commit af2d6de7aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -20,6 +20,7 @@ linters:
- gocritic
- gomodguard
- gosec
- govet
- importas
- misspell
- nakedret
@ -33,7 +34,6 @@ linters:
- usetesting
disable:
- errcheck
- govet
- ineffassign
- staticcheck
- unused
@ -51,6 +51,13 @@ linters:
gosec:
excludes:
- G115
govet:
disable:
- copylocks
- fieldalignment
- shadow
- testinggoroutine
enable-all: true
perfsprint:
# Optimizes even if it requires an int or uint type cast.
int-conversion: true

Loading…
Cancel
Save