From fca62e63c3549a529086a08580a5cf43cf63e140 Mon Sep 17 00:00:00 2001 From: Igor Chubin Date: Sun, 11 Dec 2022 14:29:17 +0100 Subject: [PATCH] Add Makefile target: lint --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 94079a8..dc4616e 100644 --- a/Makefile +++ b/Makefile @@ -3,3 +3,6 @@ srv: srv.go internal/*/*.go internal/*/*/*.go go-test: go test ./... + +lint: + golangci-lint run ./...