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

63 lines
1.0 KiB
YAML

run:
# timeout for analysis
timeout: 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"]
gomoddirectives:
replace-allow-list:
# See go.mod for the explanation why these are needed.
- google.golang.org/protobuf
linters:
enable-all: true
disable:
- gochecknoglobals
- gosec
- funlen
- varnamelen
- wrapcheck
- testpackage
- gomnd
- err113
- exhaustruct
- forbidigo
- gocognit
- nestif
- wsl
- cyclop
- gocyclo
- nlreturn
- stylecheck
- paralleltest
- ireturn
- maintidx
- noctx
- gofumpt
- exhaustive
- protogetter
- depguard
- mnd
issues:
exclude-rules:
- path: cmd/chantools
linters:
- lll