yq/.golangci.yml

41 lines
763 B
YAML
Raw Normal View History

run:
timeout: 5m
linters:
enable:
- asciicheck
- depguard
2021-11-22 06:43:38 +00:00
- errorlint
2021-11-26 09:24:21 +00:00
- gci
- gochecknoinits
- gofmt
- goimports
- gosec
- megacheck
2021-11-25 09:24:51 +00:00
- misspell
- nakedret
- nolintlint
- predeclared
- revive
- unconvert
- unparam
linters-settings:
depguard:
list-type: blacklist
include-go-root: true
packages:
- io/ioutil
packages-with-error-message:
- io/ioutil: "The 'io/ioutil' package is deprecated. Use corresponding 'os' or 'io' functions instead."
issues:
exclude-rules:
- linters:
- gosec
text: "Implicit memory aliasing in for loop."
path: _test\.go
- linters:
- revive
text: "unexported-return"
- linters:
- revive
text: "var-naming"