Lint-fix: Ignore goconst

This commit is contained in:
Calle Pettersson 2018-10-05 07:17:19 +02:00 committed by Calle Pettersson
parent 0eab86c731
commit e24e0dc9f5
2 changed files with 2 additions and 7 deletions

View File

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

View File

@ -2,7 +2,8 @@
"Disable": [
"gocyclo",
"maligned",
"megacheck"
"megacheck",
"goconst"
],
"Exclude": [
"don't use underscores in Go names",