yq/.golangci.yml

44 lines
809 B
YAML
Raw Permalink 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:
2024-01-11 02:17:34 +00:00
rules:
prevent_unmaintained_packages:
list-mode: lax
files:
- $all
- "!$test"
deny:
- pkg: io/ioutil
desc: "replaced by io and os packages since Go 1.16: https://tip.golang.org/doc/go1.16#ioutil"
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"