Skip to content

Commit

Permalink
Address clippy lints and add Makefile targets
Browse files Browse the repository at this point in the history
  • Loading branch information
M3t0r committed Sep 23, 2024
1 parent 7b97acf commit 8e5e6be
Show file tree
Hide file tree
Showing 3 changed files with 326 additions and 193 deletions.
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ DATABASE := $(subst sqlite://,,${DATABASE_URL})
dev:
cargo watch --ignore "$(basename ${DATABASE}).*" -- cargo run

.PHONY: format
format:
cargo fmt --all

.PHONY: lint
lint:
cargo clippy
cargo fmt --all --check

.PHONY: tag
tag:
( \
Expand Down
Loading

0 comments on commit 8e5e6be

Please sign in to comment.