diff options
| author | Ben Beltran <ben@nsovocal.com> | 2017-05-19 00:05:14 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2017-05-19 00:05:14 -0500 |
| commit | 307993a0c51d3207581c33068d69e2b826348bd6 (patch) | |
| tree | a5da3eb7246e3dbb2d7f6f96a44cd7d8fa97f06b | |
| parent | 942fbbc8e7085fd5704ad2ffa096f02a42ab3afe (diff) | |
Add lint target to make
| -rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |