mirror of
https://github.com/42wim/matterbridge
synced 2024-11-07 09:20:23 +00:00
71a5b72aff
Signed-off-by: Gary Kim <gary@garykim.dev>
27 lines
530 B
YAML
27 lines
530 B
YAML
# golangci-lint configuration options
|
|
|
|
linters:
|
|
enable:
|
|
- deadcode
|
|
- errcheck
|
|
- goimports
|
|
- golint
|
|
- ineffassign
|
|
- structcheck
|
|
- varcheck
|
|
- govet
|
|
- unconvert
|
|
- prealloc
|
|
- maligned
|
|
disable-all: false
|
|
|
|
issues:
|
|
# Enable some lints excluded by default
|
|
exclude-use-default: false
|
|
|
|
# Maximum issues count per one linter. Set to 0 to disable. Default is 50.
|
|
max-per-linter: 0
|
|
|
|
# Maximum count of issues with the same text. Set to 0 to disable. Default is 3.
|
|
max-same-issues: 0
|