mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-28 00:17:42 +08:00

Buildx currently returns the Docker Engine version for the docker driver and it can be confusing. This is because BuildKit before 0.11 version does not support the Info API that returns the BuildKit version. This change resolves the BuildKit version from the Docker engine one. Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
31 lines
399 B
YAML
31 lines
399 B
YAML
run:
|
|
deadline: 2m
|
|
|
|
linters:
|
|
disable-all: true
|
|
enable:
|
|
- misspell
|
|
- structcheck
|
|
- govet
|
|
- staticcheck
|
|
- deadcode
|
|
- errcheck
|
|
- varcheck
|
|
- unparam
|
|
- ineffassign
|
|
- nakedret
|
|
- gocyclo
|
|
- dupl
|
|
- goimports
|
|
- revive
|
|
- gosec
|
|
- gosimple
|
|
- typecheck
|
|
- unused
|
|
|
|
linters-settings:
|
|
gofmt:
|
|
simplify: true
|
|
dupl:
|
|
threshold: 600
|