2290641fa4
Golint is replaced with revive since the former has been archived and replaced with the latter. Signed-off-by: Marcos Lilljedahl <marcosnils@gmail.com>
39 lines
606 B
YAML
39 lines
606 B
YAML
run:
|
|
skip-dirs:
|
|
# progressui is a modified 3rd party library from buildkit
|
|
- util/progressui
|
|
|
|
linters:
|
|
disable-all: true
|
|
enable:
|
|
- bodyclose
|
|
- deadcode
|
|
- depguard
|
|
- dogsled
|
|
- dupl
|
|
- goconst
|
|
- gocritic
|
|
- gocyclo
|
|
- gofmt
|
|
- goimports
|
|
- revive
|
|
- goprintffuncname
|
|
- gosec
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- misspell
|
|
- nakedret
|
|
- prealloc
|
|
- rowserrcheck
|
|
- exportloopref
|
|
- staticcheck
|
|
- structcheck
|
|
- stylecheck
|
|
- typecheck
|
|
- unconvert
|
|
- unparam
|
|
- unused
|
|
- varcheck
|
|
- whitespace
|