Skip to content
This repository was archived by the owner on Mar 22, 2025. It is now read-only.

Commit c19ea7b

Browse files
committed
Adds new linter
1 parent 8800a7e commit c19ea7b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ lint:
1212
test -z $$(gofmt -l .) || (echo "Code isn't gofmt'ed!" && exit 1)
1313
go vet $$(go list ./... | grep -v /tmp)
1414
gosec -quiet -fmt=golint -exclude-dir="tmp" ./...
15+
pointerinterface ./...
1516

1617
# Generate pretty coverage report
1718
analyse:
@@ -26,6 +27,7 @@ deps:
2627
go mod download
2728
go install github.com/securego/gosec/v2/cmd/gosec@latest
2829
go install github.com/fzipp/gocyclo/cmd/gocyclo@latest
30+
go install code.larus.se/lmas/pointerinterface@latest
2931

3032
# Show documentation of public parts of package, in the current dir
3133
docs:
@@ -41,4 +43,3 @@ build:
4143
clean:
4244
go clean
4345
rm .cover.out cover.html
44-
# TODO: add raspberrypi bins

0 commit comments

Comments
 (0)