forked from TrueCloudLab/distribution
Merge pull request #2661 from dmcgowan/enable-goimports
Enable goimports check
This commit is contained in:
commit
eefe9670bd
4 changed files with 6 additions and 3 deletions
|
@ -5,6 +5,7 @@
|
||||||
"EnableGC": true,
|
"EnableGC": true,
|
||||||
"Enable": [
|
"Enable": [
|
||||||
"gofmt",
|
"gofmt",
|
||||||
|
"goimports",
|
||||||
"golint",
|
"golint",
|
||||||
"vet"
|
"vet"
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
package notifications
|
package notifications
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/docker/distribution/configuration"
|
|
||||||
"net/http"
|
"net/http"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/docker/distribution/configuration"
|
||||||
)
|
)
|
||||||
|
|
||||||
// EndpointConfig covers the optional configuration parameters for an active
|
// EndpointConfig covers the optional configuration parameters for an active
|
||||||
|
|
|
@ -40,12 +40,12 @@ package base
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"io"
|
"io"
|
||||||
|
"time"
|
||||||
|
|
||||||
dcontext "github.com/docker/distribution/context"
|
dcontext "github.com/docker/distribution/context"
|
||||||
prometheus "github.com/docker/distribution/metrics"
|
prometheus "github.com/docker/distribution/metrics"
|
||||||
storagedriver "github.com/docker/distribution/registry/storage/driver"
|
storagedriver "github.com/docker/distribution/registry/storage/driver"
|
||||||
"github.com/docker/go-metrics"
|
"github.com/docker/go-metrics"
|
||||||
"time"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
|
@ -5,13 +5,14 @@ import (
|
||||||
"crypto/rand"
|
"crypto/rand"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
dcontext "github.com/docker/distribution/context"
|
|
||||||
"net"
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
dcontext "github.com/docker/distribution/context"
|
||||||
|
|
||||||
"reflect" // used as a replacement for testify
|
"reflect" // used as a replacement for testify
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue