1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
linters:
enable:
- bodyclose
- deadcode
- dogsled
- dupl
- errcheck
- gocritic
- godox
- gofmt
- goimports
- golint
- gosec
- gosimple
- govet
- ineffassign
- interfacer
- maligned
- nakedret
- prealloc
- scopelint
- staticcheck
- structcheck
- stylecheck
- typecheck
- unconvert
- unparam
- unused
- varcheck
- whitespace
issues:
exclude-rules:
- text: "Consider preallocating `output`"
linters:
- prealloc
- text: "Consider preallocating `labels`"
linters:
- prealloc
|