2019-01-12 00:29:49 +08:00
|
|
|
# golangci-lint configuration options
|
|
|
|
|
|
|
|
linters:
|
|
|
|
enable:
|
|
|
|
- deadcode
|
|
|
|
- errcheck
|
|
|
|
- goimports
|
2021-10-15 00:49:41 +08:00
|
|
|
- revive
|
2019-01-12 00:29:49 +08:00
|
|
|
- ineffassign
|
|
|
|
- structcheck
|
|
|
|
- varcheck
|
|
|
|
- govet
|
|
|
|
- unconvert
|
|
|
|
#- prealloc
|
|
|
|
#- maligned
|
|
|
|
disable-all: true
|
|
|
|
|
|
|
|
issues:
|
2019-02-09 19:25:05 +08:00
|
|
|
# Enable some lints excluded by default
|
|
|
|
exclude-use-default: false
|
|
|
|
|
2019-01-12 00:29:49 +08:00
|
|
|
# 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
|