navidrome/.golangci.yml

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

36 lines
511 B
YAML
Raw Normal View History

2022-03-27 04:44:47 +02:00
run:
2022-10-01 00:11:44 +02:00
go: "1.19"
2022-03-27 04:44:47 +02:00
2020-04-26 19:12:59 +02:00
linters:
enable:
2022-10-01 01:55:44 +02:00
- asasalint
- asciicheck
- bidichk
2020-04-29 12:29:34 +02:00
- bodyclose
- depguard
2020-04-29 15:45:57 +02:00
- dogsled
- durationcheck
2020-04-29 15:45:57 +02:00
- errcheck
2022-10-01 01:33:39 +02:00
- errorlint
2022-10-01 00:23:47 +02:00
- exportloopref
2020-04-29 15:45:57 +02:00
- gocyclo
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
- misspell
2022-10-01 02:18:14 +02:00
- nilerr
2020-04-29 12:29:34 +02:00
- rowserrcheck
2020-04-29 15:45:57 +02:00
- staticcheck
- typecheck
2020-04-29 12:29:34 +02:00
- unconvert
2020-04-29 15:45:57 +02:00
- unused
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):"