erigon-pulse/.golangci/step4.yml
2020-08-11 06:38:34 +07:00

25 lines
412 B
YAML

run:
deadline: 10m
linters:
disable-all: true
enable:
- gosec
- ineffassign
- depguard
- typecheck
- unused
- misspell
- maligned
issues:
exclude-rules:
# Exclude some linters from running on tests files.
- path: _test\.go
linters:
- gosec
- unused
exclude:
# gosec: Profiling endpoint is automatically exposed on /debug/pprof
- G108