Skip to content

Commit

Permalink
Makefile: use fast linters
Browse files Browse the repository at this point in the history
  • Loading branch information
Francisco Souza committed Jan 9, 2018
1 parent 39688f8 commit 1df0ec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ lint: testdeps
gometalinter --install --vendored-linters
go build -i
go list -f '{{.TestImports}}' ./... | sed -e 's/\[\(.*\)\]/\1/' | tr ' ' '\n' | grep '^.*\..*/.*$$' | xargs go install
gometalinter -j 2 --enable=misspell --enable=gofmt --enable=unused --disable=dupl --disable=errcheck --disable=gas --disable=interfacer --disable=gocyclo --deadline=10m --tests --vendor ./...
gometalinter -j 2 --fast --disable=gas --disable=gocyclo --deadline=10m --tests --vendor ./...

gotest: testdeps
go test ./...
Expand Down

0 comments on commit 1df0ec5

Please sign in to comment.