* Replace goling with revive as the former is deprecated

Signed-off-by: Chris Crone <christopher.crone@docker.com>
This commit is contained in:
Chris Crone 2021-05-19 15:00:13 +00:00
Родитель d543ef3064
Коммит d27bda5e1d
13 изменённых файлов: 14 добавлений и 20 удалений

Просмотреть файл

@ -11,7 +11,7 @@ linters:
- gocyclo
- gofmt
- goimports
- golint
- revive
- gosimple
- govet
- ineffassign

Просмотреть файл

@ -16,7 +16,7 @@
# limitations under the License.
ARG GO_VERSION=1.16-alpine
ARG GOLANGCI_LINT_VERSION=v1.39.0-alpine
ARG GOLANGCI_LINT_VERSION=v1.40.1-alpine
ARG PROTOC_GEN_GO_VERSION=v1.4.3
FROM --platform=${BUILDPLATFORM} golang:${GO_VERSION} AS base

Просмотреть файл

@ -347,7 +347,7 @@ func ContainerGroupToContainer(containerID string, cg containerinstance.Containe
status := GetStatus(cc, cg)
platform := string(cg.OsType)
var envVars map[string]string = nil
var envVars map[string]string
if cc.EnvironmentVariables != nil && len(*cc.EnvironmentVariables) != 0 {
envVars = map[string]string{}
for _, envVar := range *cc.EnvironmentVariables {

Просмотреть файл

@ -570,7 +570,7 @@ func TestConvertContainerGroupStatus(t *testing.T) {
}
func container(status *string) containerinstance.Container {
var state *containerinstance.ContainerState = nil
var state *containerinstance.ContainerState
if status != nil {
state = &containerinstance.ContainerState{
State: status,
@ -586,7 +586,7 @@ func container(status *string) containerinstance.Container {
}
func group(status *string) containerinstance.ContainerGroup {
var view *containerinstance.ContainerGroupPropertiesInstanceView = nil
var view *containerinstance.ContainerGroupPropertiesInstanceView
if status != nil {
view = &containerinstance.ContainerGroupPropertiesInstanceView{
State: status,

Просмотреть файл

@ -58,7 +58,7 @@ func convertPortsToAci(service serviceConfigAciHelper) ([]containerinstance.Cont
Protocol: groupProtocol,
})
}
var dnsLabelName *string = nil
var dnsLabelName *string
if service.DomainName != "" {
dnsLabelName = &service.DomainName
}

Просмотреть файл

@ -70,7 +70,7 @@ func getRegistryCredentials(project compose.Project, helper registryHelper) ([]c
return nil, err
}
var cloudEnvironment *login.CloudEnvironment = nil
var cloudEnvironment *login.CloudEnvironment
if ce, err := loginService.GetCloudEnvironment(); err != nil {
cloudEnvironment = &ce
}

Просмотреть файл

@ -42,7 +42,7 @@ func main() {
}
}
var healthy bool = true
var healthy = true
func fail(w http.ResponseWriter, req *http.Request) {
healthy = false

Просмотреть файл

@ -385,7 +385,7 @@ func TestContainerRunAttached(t *testing.T) {
// Used in subtests
var (
container string = "test-container"
container = "test-container"
endpoint string
followLogsProcess *icmd.Result
)

Просмотреть файл

@ -459,7 +459,7 @@ func TestNonstandardCloudEnvironment(t *testing.T) {
},
"resourceManager": "https://management.docker.com/"
}]`)
var metadataReqCount int32 = 0
var metadataReqCount int32
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
_, err := w.Write(dockerCloudMetadata)
assert.NilError(t, err)

Просмотреть файл

@ -220,8 +220,5 @@ func startDependencies(ctx context.Context, backend compose.Service, project typ
if err := backend.Create(ctx, &project, compose.CreateOptions{}); err != nil {
return err
}
if err := backend.Start(ctx, &project, compose.StartOptions{}); err != nil {
return err
}
return nil
return backend.Start(ctx, &project, compose.StartOptions{})
}

Просмотреть файл

@ -86,7 +86,7 @@ func makeColorFunc(code string) colorFunc {
}
}
var nextColor func() colorFunc = rainbowColor
var nextColor = rainbowColor
func rainbowColor() colorFunc {
return <-loop

Просмотреть файл

@ -116,7 +116,7 @@ func (kc *KubeClient) GetLogs(ctx context.Context, projectName string, consumer
// WaitForPodState blocks until pods reach desired state
func (kc KubeClient) WaitForPodState(ctx context.Context, opts WaitForStatusOptions) error {
var timeout time.Duration = time.Minute
var timeout = time.Minute
if opts.Timeout != nil {
timeout = *opts.Timeout
}

Просмотреть файл

@ -63,10 +63,7 @@ func (vs *volumeService) Create(ctx context.Context, name string, options interf
}
func (vs *volumeService) Delete(ctx context.Context, volumeID string, options interface{}) error {
if err := vs.apiClient.VolumeRemove(ctx, volumeID, false); err != nil {
return err
}
return nil
return vs.apiClient.VolumeRemove(ctx, volumeID, false)
}
func (vs *volumeService) Inspect(ctx context.Context, volumeID string) (volumes.Volume, error) {