mirror of
https://github.com/docker/buildx.git
synced 2024-11-22 15:37:16 +08:00
48067735fc
Resolves the following message in golangci output: > The linter 'golint' is deprecated (since v1.41.0) due to: The repository of the linter has been archived by the owner. Replaced by revive. Additionally, fix a minor linting issue discovered by revive. Signed-off-by: Justin Chadwell <me@jedevc.com>
41 lines
627 B
YAML
41 lines
627 B
YAML
run:
|
|
timeout: 10m
|
|
skip-files:
|
|
- ".*\\.pb\\.go$"
|
|
|
|
modules-download-mode: vendor
|
|
|
|
build-tags:
|
|
|
|
linters:
|
|
enable:
|
|
- gofmt
|
|
- govet
|
|
- deadcode
|
|
- depguard
|
|
- goimports
|
|
- ineffassign
|
|
- misspell
|
|
- unused
|
|
- varcheck
|
|
- revive
|
|
- staticcheck
|
|
- typecheck
|
|
- structcheck
|
|
disable-all: true
|
|
|
|
linters-settings:
|
|
depguard:
|
|
list-type: blacklist
|
|
include-go-root: true
|
|
packages:
|
|
# The io/ioutil package has been deprecated.
|
|
# https://go.dev/doc/go1.16#ioutil
|
|
- io/ioutil
|
|
|
|
issues:
|
|
exclude-rules:
|
|
- linters:
|
|
- revive
|
|
text: "stutters"
|