mailpot/Makefile

12 lines
115 B
Makefile
Raw Normal View History

2022-08-24 12:22:44 +03:00
.PHONY: check
check:
cargo check --all
.PHONY: fmt
fmt:
cargo fmt --all
.PHONY: lint
lint:
cargo clippy --all