1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2024-12-14 11:57:48 +00:00
kyverno/.golangci.yml
Charles-Edouard Brétéché d982ef77b3
chore: enable deadcode and unused linters (#3861)
Signed-off-by: Charles-Edouard Brétéché <charled.breteche@gmail.com>
2022-05-10 17:06:48 +02:00

18 lines
No EOL
244 B
YAML

linters:
enable:
- deadcode
- errcheck
- gosec
- gosimple
- bodyclose
- staticcheck
- unused
disable:
- ineffassign
- structcheck
run:
timeout: 5m
skip-files:
- ".+_test.go"
- ".+_test_.+.go"