2
0
mirror of https://github.com/guggero/chantools synced 2024-11-07 03:20:43 +00:00
chantools/.golangci.yml

26 lines
433 B
YAML
Raw Normal View History

2019-11-09 14:41:31 +00:00
run:
# timeout for analysis
deadline: 4m
linters-settings:
govet:
# Don't report about shadowed variables
check-shadowing: false
gofmt:
# simplify code: gofmt with `-s` option, true by default
simplify: true
linters:
enable-all: true
disable:
- gochecknoglobals
2020-01-04 22:58:10 +00:00
- gosec
- funlen
- maligned
- interfacer
2020-01-04 22:58:10 +00:00
issues:
exclude-rules:
- path: cmd/chantools
linters:
- lll