From: Ben Beltran Date: Fri, 19 May 2017 05:05:14 +0000 (-0500) Subject: Add lint target to make X-Git-Tag: 0.1.0^2~1^2~17 X-Git-Url: https://git.r.bdr.sh/rbdr/lyricli/commitdiff_plain/307993a0c51d3207581c33068d69e2b826348bd6?ds=sidebyside Add lint target to make --- diff --git a/Makefile b/Makefile index 34eec3a..abbfd02 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,10 @@ install: build test: build swift test +lint: + cd Sources && swiftlint + clean: swift build --clean -.PHONY: build test clean +.PHONY: build install test clean lint