diff options
Diffstat (limited to 'vendor/github.com/golangci/revgrep/Makefile')
| -rw-r--r-- | vendor/github.com/golangci/revgrep/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/github.com/golangci/revgrep/Makefile b/vendor/github.com/golangci/revgrep/Makefile new file mode 100644 index 000000000..5ac8725d0 --- /dev/null +++ b/vendor/github.com/golangci/revgrep/Makefile @@ -0,0 +1,12 @@ +.PHONY: clean lint lint-fix test + +default: lint test + +test: + go test -v -cover ./... + +lint: + golangci-lint run + +lint-fix: + golangci-lint run --fix |
