Skip to content

Commit

Permalink
add linting to Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
mikenye committed Feb 10, 2025
1 parent 34ae0fc commit 88d87b1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,7 @@ linesegment_fuzz_intersections: ## Run fuzz testing for linesegment intersectio
go test -run=FuzzFindIntersections_Int_2Segments -fuzz=FuzzFindIntersections_Int_2Segments -fuzztime=1000000x -parallel=$(FUZZ_WORKERS) ./linesegment/...
go test -run=FuzzFindIntersections_Int_3Segments -fuzz=FuzzFindIntersections_Int_3Segments -fuzztime=1000000x -parallel=$(FUZZ_WORKERS) ./linesegment/...
go test -run=FuzzFindIntersections_Int_4Segments -fuzz=FuzzFindIntersections_Int_4Segments -fuzztime=1000000x -parallel=$(FUZZ_WORKERS) ./linesegment/...

.PHONY: lint
lint: ## Run golangci-lint
golangci-lint run

0 comments on commit 88d87b1

Please sign in to comment.