mirror of
https://github.com/rclone/rclone
synced 2024-11-01 21:49:35 +01:00
28 lines
492 B
YAML
28 lines
492 B
YAML
# golangci-lint configuration options
|
|
|
|
run:
|
|
build-tags:
|
|
- cmount
|
|
|
|
linters:
|
|
enable:
|
|
- deadcode
|
|
- errcheck
|
|
- goimports
|
|
- golint
|
|
- ineffassign
|
|
- structcheck
|
|
- varcheck
|
|
- govet
|
|
- unconvert
|
|
#- prealloc
|
|
#- maligned
|
|
disable-all: true
|
|
|
|
issues:
|
|
# 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
|