navidrome/.golangci.yml

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

30 lines
442 B
YAML
Raw Normal View History

2020-04-26 19:12:59 +02:00
linters:
enable:
2020-04-29 12:29:34 +02:00
- bodyclose
2020-04-29 15:45:57 +02:00
- deadcode
- dogsled
- errcheck
- gocyclo
2020-04-26 19:12:59 +02:00
- goimports
2020-04-29 12:29:34 +02:00
- goprintffuncname
2020-04-26 19:12:59 +02:00
- gosec
2020-04-29 15:45:57 +02:00
- gosimple
- govet
- ineffassign
2020-04-29 12:29:34 +02:00
- interfacer
- misspell
- rowserrcheck
2020-04-29 15:45:57 +02:00
- staticcheck
- structcheck
- typecheck
2020-04-29 12:29:34 +02:00
- unconvert
2020-04-29 15:45:57 +02:00
- unused
- varcheck
2020-04-29 12:29:34 +02:00
- whitespace
2020-04-26 19:12:59 +02:00
issues:
exclude-rules:
- linters:
- gosec
2020-10-24 18:26:57 +02:00
text: "(G501|G401|G505):"