You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
chantools/.golangci.yml

26 lines
433 B
YAML

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
- gosec
- funlen
- maligned
- interfacer
issues:
exclude-rules:
- path: cmd/chantools
linters:
- lll