quintodrome/.golangci.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
443 B
YAML
Raw Normal View History

2022-03-26 18:44:47 -08:00
run:
go: '1.18'
2020-04-26 09:12:59 -08:00
linters:
enable:
2020-04-29 02:29:34 -08:00
- bodyclose
2020-04-29 05:45:57 -08:00
- deadcode
- depguard
2020-04-29 05:45:57 -08:00
- dogsled
- errcheck
- gocyclo
2020-04-29 02:29:34 -08:00
- goprintffuncname
2020-04-26 09:12:59 -08:00
- gosec
2020-04-29 05:45:57 -08:00
- gosimple
- govet
- ineffassign
2020-04-29 02:29:34 -08:00
- misspell
- rowserrcheck
2020-04-29 05:45:57 -08:00
- staticcheck
- structcheck
- typecheck
2020-04-29 02:29:34 -08:00
- unconvert
2020-04-29 05:45:57 -08:00
- unused
- varcheck
2020-04-29 02:29:34 -08:00
- whitespace
2020-04-26 09:12:59 -08:00
issues:
exclude-rules:
- linters:
- gosec
2020-10-24 08:26:57 -08:00
text: "(G501|G401|G505):"