From fdff800b2be7ee862a809a609a45c670a210c430 Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Wed, 1 Dec 2021 11:42:17 -0500 Subject: [PATCH] Add lint action to Makefile --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c06c62b..11b5f8f 100644 --- a/Makefile +++ b/Makefile @@ -9,6 +9,8 @@ clean: check: cargo check + +lint: cargo clippy fmt: @@ -17,4 +19,4 @@ fmt: fix: fmt cargo fix --allow-dirty --allow-staged -.phony: run-pi clean check run fmt fix \ No newline at end of file +.phony: run-pi clean check run fmt fix lint \ No newline at end of file