mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-26 11:32:04 -05:00
Before change ``` ⇶ golangci-lint run --disable-all --no-config --enable=staticcheck | ack SA6005 builder/profitbricks/step_create_server.go:254:22: SA6005: should use strings.EqualFold(a, b) instead of strings.ToLower(a) == strings.ToLower(b) (staticcheck) builder/oneandone/config.go:97:7: SA6005: should use strings.EqualFold(a, b) instead of strings.ToLower(a) == strings.ToLower(b) (staticcheck) builder/vmware/common/driver_parser.go:1199:7: SA6005: should use strings.EqualFold(a, b) instead of strings.ToLower(a) == strings.ToLower(b) (staticcheck) ``` After change ``` ⇶ golangci-lint run --disable-all --no-config --enable=staticcheck | ack SA6005 ``` |
||
|---|---|---|
| .. | ||
| artifact.go | ||
| builder.go | ||
| builder_acc_test.go | ||
| builder_test.go | ||
| config.go | ||
| config.hcl2spec.go | ||
| step_create_server.go | ||
| step_create_sshkey.go | ||
| step_take_snapshot.go | ||