]> git.r.bdr.sh - rbdr/lyricli/commitdiff
Add lint target to make
authorBen Beltran <redacted>
Fri, 19 May 2017 05:05:14 +0000 (00:05 -0500)
committerBen Beltran <redacted>
Fri, 19 May 2017 05:05:14 +0000 (00:05 -0500)
Makefile

index 34eec3ac500784510e6f0cf64c0d4c0b2b801ea2..abbfd02e5636abfc19e398293e9e59b4d1df72e7 100644 (file)
--- 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