grafana/scripts/go/configs/.golangci.yml
Arve Knudsen 289a5fb862
Chore: Fix golangci-lint timeout config, disable govet (#23015)
* golangci-lint: Fix timeout config; disable govet
* CircleCI: Use official golangci-lint binary
2020-03-24 11:57:22 +01:00

26 lines
424 B
YAML

run:
timeout: 10m
linters:
disable-all: true
enable:
- deadcode
- gofmt
- gosimple
- ineffassign
- structcheck
- typecheck
- unconvert
- unused
- varcheck
- goconst
- staticcheck
- errcheck
linters-settings:
goconst:
# minimal length of string constant, 3 by default
min-len: 5
# minimal occurrences count to trigger, 3 by default
min-occurrences: 5