github.com/naive/revgrep@v0.0.0-20240331191128-ab485935cedc/Makefile (about)

     1  .PHONY: clean lint lint-fix test
     2  
     3  default: lint test
     4  
     5  test:
     6  	go test -v -cover ./...
     7  
     8  lint:
     9  	golangci-lint run
    10  
    11  lint-fix:
    12  	golangci-lint run --fix