From a6a1efc397438d9a63e0a20eec76bf7cc0075b37 Mon Sep 17 00:00:00 2001 From: Yiyang Kang Date: Sat, 4 Mar 2023 13:09:51 +0800 Subject: [PATCH] build: add lint target --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 99cf855..27f4ddf 100644 --- a/Makefile +++ b/Makefile @@ -9,4 +9,7 @@ install: build clean: rm -vf "$(BIN_NAME)" -.PHONY: build install clean +lint: + golangci-lint run + +.PHONY: build install clean lint