Move to makefile, do initial excludes

This commit is contained in:
Calle Pettersson
2019-01-23 09:56:24 +01:00
committed by Calle Pettersson
parent 76ddad34b8
commit 7e05621b26
2 changed files with 17 additions and 1 deletions
+6
View File
@@ -1,5 +1,11 @@
export GOOS=windows
lint:
gometalinter --vendor --config gometalinter.config ./...
test:
go test -v ./...
build:
promu build -v
+11 -1
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"
]
}