1
0
mirror of https://github.com/distribution/distribution synced 2024-11-06 19:35:52 +01:00

Merge pull request #2661 from dmcgowan/enable-goimports

Enable goimports check
This commit is contained in:
Olivier 2018-08-07 14:59:49 -07:00 committed by GitHub
commit eefe9670bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 3 deletions

@ -5,6 +5,7 @@
"EnableGC": true,
"Enable": [
"gofmt",
"goimports",
"golint",
"vet"
]

@ -1,9 +1,10 @@
package notifications
import (
"github.com/docker/distribution/configuration"
"net/http"
"time"
"github.com/docker/distribution/configuration"
)
// EndpointConfig covers the optional configuration parameters for an active

@ -40,12 +40,12 @@ package base
import (
"context"
"io"
"time"
dcontext "github.com/docker/distribution/context"
prometheus "github.com/docker/distribution/metrics"
storagedriver "github.com/docker/distribution/registry/storage/driver"
"github.com/docker/go-metrics"
"time"
)
var (

@ -5,13 +5,14 @@ import (
"crypto/rand"
"encoding/json"
"fmt"
dcontext "github.com/docker/distribution/context"
"net"
"net/http"
"net/http/httptest"
"testing"
"time"
dcontext "github.com/docker/distribution/context"
"reflect" // used as a replacement for testify
)