mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
Merge pull request #1526 from codysoyland/1525-metalinter-goimports
Fix linter issue: goimports
This commit is contained in:
commit
379e5daf44
2 changed files with 3 additions and 2 deletions
2
Makefile
2
Makefile
|
|
@ -109,7 +109,7 @@ docker-test:
|
|||
docker run --rm -v $(PWD):/go/src/$(CLONE_URL) -w /go/src/$(CLONE_URL) golang:$(GO_VERSION) go test -tags='$(BUILD_TAGS)' $(TESTFLAGS) ./...
|
||||
|
||||
metalinter:
|
||||
gometalinter --vendor --disable-all --enable=gotype --enable=gotypex --enable=gofmt --deadline=60s --exclude "^internal/.*\.pb\.go" ./...
|
||||
gometalinter --vendor --disable-all --enable=gotype --enable=gotypex --enable=gofmt --enable=goimports --deadline=60s --exclude "^internal/.*\.pb\.go" ./...
|
||||
|
||||
######################
|
||||
# Build dependencies #
|
||||
|
|
|
|||
|
|
@ -1,8 +1,9 @@
|
|||
package test
|
||||
|
||||
import (
|
||||
"github.com/pilosa/pilosa/pql"
|
||||
"testing"
|
||||
|
||||
"github.com/pilosa/pilosa/pql"
|
||||
)
|
||||
|
||||
func TestPQL_Generator(t *testing.T) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue