mailpot/Makefile

13 lines
138 B
Makefile

.PHONY: check
check:
cargo check --all
.PHONY: fmt
fmt:
cargo fmt --all
cargo sort -w || true
.PHONY: lint
lint:
cargo clippy --all