2019-01-11 17:29:49 +01:00
|
|
|
# golangci-lint configuration options
|
|
|
|
|
|
|
|
linters:
|
|
|
|
enable:
|
|
|
|
- deadcode
|
|
|
|
- errcheck
|
|
|
|
- goimports
|
2021-10-14 18:49:41 +02:00
|
|
|
- revive
|
2019-01-11 17:29:49 +01:00
|
|
|
- ineffassign
|
|
|
|
- structcheck
|
|
|
|
- varcheck
|
|
|
|
- govet
|
|
|
|
- unconvert
|
|
|
|
#- prealloc
|
|
|
|
#- maligned
|
|
|
|
disable-all: true
|
|
|
|
|
|
|
|
issues:
|
2019-02-09 12:25:05 +01:00
|
|
|
# Enable some lints excluded by default
|
|
|
|
exclude-use-default: false
|
|
|
|
|
2019-01-11 17:29:49 +01: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
|
2021-10-15 16:58:52 +02:00
|
|
|
|
|
|
|
run:
|
|
|
|
# timeout for analysis, e.g. 30s, 5m, default is 1m
|
|
|
|
timeout: 10m
|