mailpot/Makefile

12 lines
115 B
Makefile

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