1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-27 01:14:40 +01:00

Add a gometalinter config file

This commit is contained in:
Oliver Steele 2017-06-21 10:53:50 -04:00
parent c171c81f73
commit 44614d6a7b
2 changed files with 4 additions and 1 deletions

3
.gometalinter.json Normal file
View File

@ -0,0 +1,3 @@
{
"Exclude": [".*_test.go"]
}

View File

@ -35,7 +35,7 @@ install: ## compile and install the executable
go install ${LDFLAGS} ${PACKAGE}/cmd/gojekyll
lint: ## lint the package
gometalinter ./...
gometalinter --config .gometalinter.json ./...
test: ## test the package
go test ${LDFLAGS} ./...