mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
fe84cca1ad
This reverts commit 7a24c173f6
.
31 lines
606 B
YAML
31 lines
606 B
YAML
# golangci-lint configuration options
|
|
|
|
linters:
|
|
enable:
|
|
- deadcode
|
|
- errcheck
|
|
- goimports
|
|
- revive
|
|
- ineffassign
|
|
- structcheck
|
|
- varcheck
|
|
- govet
|
|
- unconvert
|
|
#- prealloc
|
|
#- maligned
|
|
disable-all: true
|
|
|
|
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
|
|
|
|
run:
|
|
# timeout for analysis, e.g. 30s, 5m, default is 1m
|
|
timeout: 10m
|