containerd/.golangci.yml
Lantao Liu c368af1bc3 Configure golangci-lint
Signed-off-by: Lantao Liu <lantaol@google.com>
2019-10-09 10:51:02 -07:00

24 lines
308 B
YAML

linters:
enable:
- structcheck
- varcheck
- staticcheck
- unconvert
- gofmt
- goimports
- golint
- ineffassign
- vet
- unused
- misspell
disable:
- errcheck
run:
deadline: 2m
skip-dirs:
- integration
- pkg/api
skip-files:
- ".*_test.go"