mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 14:30:26 +00:00
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
|