erigon-pulse/.golangci/step4.yml

25 lines
412 B
YAML
Raw Normal View History

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