Files
virtual-kubelet/.golangci.yml
Sargun Dhillon d64d427ec8 Enable all linters by default
This removes the directive from .golangci.yml to disable all linters,
and fixes the relevant bugs / issues that are exposed.
2020-12-03 11:33:06 -08:00

17 lines
211 B
YAML

linter-settings:
lll:
line-length: 200
linters:
enable:
- errcheck
- govet
- ineffassign
- golint
- goconst
- goimports
- unused
- varcheck
- deadcode
- misspell