This change will vendor the new version of the exoscale-import post-processor component, but remove all of its code from Packer. After the v1.8.0 release this change should be removed entirely. This vendor process is being used as a workaround for decoupling the exoscale-import component without causing a breaking change in Packer. Users of Exoscale are encouraged to leverage `packer init` for installing the latest version of packer-plugin-exoscale.
31 lines
435 B
YAML
31 lines
435 B
YAML
run:
|
|
timeout: 10m
|
|
|
|
linters-settings:
|
|
golint:
|
|
min-confidence: 0.3
|
|
gocyclo:
|
|
min-complexity: 28
|
|
goimports:
|
|
local-prefixes: github.com
|
|
|
|
linters:
|
|
enable:
|
|
- deadcode
|
|
- errcheck
|
|
- gocritic
|
|
- gocyclo
|
|
- goimports
|
|
- golint
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- megacheck
|
|
- nakedret
|
|
- scopelint
|
|
- staticcheck
|
|
- structcheck
|
|
- unused
|
|
- varcheck
|
|
disable-all: true
|