Update golangci-lint version and config with linters and formatters #21870
+89
−18
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The list of enabled and disabled checks is not well maintained, so it stops all version upgrades.
The "gofmt" and "goimports" formatters were not enabled in golint, only as separate make targets.
Make one minimal config, with only the basics. And one maximal with all linters (but no settings).
min
$ make lint GOLINT_VERSION=v2.6.1 GOLINT_CONFIG=.golangci.min.yaml
0 issues.
max
$ make lint GOLINT_VERSION=v2.6.1 GOLINT_CONFIG=.golangci.max.yaml
365 issues:
Enabling all the "revive" rules has an enormous amount of "issues", so that is not really recommended:
+ settings:+ revive:+ enable-all-rules: true* revive: 10407The project does not have the resources to maintain the inclusion / exclusion lists needed properly...
The above numbers are without vendored code, in
third_partyand invendor/github.com/docker/machineThis double standard is missing issues in code, and is stopping the integration of libmachine into minikube.