Move to makefile, do initial excludes

This commit is contained in:
Calle Pettersson 2018-10-04 20:42:29 +02:00 committed by Calle Pettersson
parent 76ddad34b8
commit 7e05621b26
2 changed files with 17 additions and 1 deletions

View File

@ -1,5 +1,11 @@
export GOOS=windows
lint:
gometalinter --vendor --config gometalinter.config ./...
test:
go test -v ./...
build:
promu build -v

View File

@ -1 +1,11 @@
{}
{
"Disable": [
"gocyclo",
"maligned",
"megacheck"
],
"Exclude": [
"don't use underscores in Go names",
"exported type .+ should have comment or be unexported"
]
}