Stricter linting (#113)

This commit is contained in:
Adrian Macneil 2020-01-01 19:11:02 -10:00 committed by GitHub
parent 810bddaea8
commit 98066fadaa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 33 additions and 3 deletions

View file

@ -7,6 +7,10 @@ all: test lint build
test:
go test -v ./...
.PHONY: fix
fix:
golangci-lint run --fix
.PHONY: lint
lint:
golangci-lint run