navidrome/.golangci.yml

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

37 lines
521 B
YAML
Raw Permalink Normal View History

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
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-11-30 20:16:30 +01:00
- nakedret
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
linters-settings:
2024-05-18 03:46:59 +02:00
govet:
enable:
- nilness
gosec:
excludes:
- G501
- G401
- G505