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

61 lines
971 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
whitespace:
multi-func: true
multi-if: true
tagliatelle:
case:
rules:
json: snake
staticcheck:
go: "1.18"
checks: ["-SA1019"]
linters:
enable-all: true
disable:
- gochecknoglobals
- gosec
- funlen
- maligned
- varnamelen
- wrapcheck
- testpackage
- gomnd
- goerr113
- exhaustruct
- forbidigo
- gocognit
- nestif
- ifshort
- wsl
- cyclop
- gocyclo
- nlreturn
- stylecheck
- paralleltest
- ireturn
- maintidx
- noctx
- gofumpt
# deprecated
- interfacer
- scopelint
- golint
- exhaustivestruct
issues:
exclude-rules:
- path: cmd/chantools
linters:
- lll