Disable the lll linter due to errors

This commit is contained in:
Chris Johnson
2016-08-12 13:39:06 -04:00
parent 189f77e155
commit df656e2dc1

View File

@@ -25,7 +25,7 @@ check:
.PHONY: metalint
metalint:
which gometalinter > /dev/null || (go get github.com/alecthomas/gometalinter && gometalinter --install --update)
gometalinter --cyclo-over=20 -e "struct field Id should be ID" --enable="gofmt -s" --enable=misspell --fast ./...
gometalinter --cyclo-over=20 -e "struct field Id should be ID" --enable="gofmt -s" --enable=misspell --disable=lll --fast ./...
.PHONY: fmt
fmt: