1
0
Fork 0

Add lint action to Makefile

This commit is contained in:
Timothy Warren 2021-12-01 11:42:17 -05:00
parent 6b48111a97
commit fdff800b2b
1 changed files with 3 additions and 1 deletions

View File

@ -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
.phony: run-pi clean check run fmt fix lint