mailpot/Makefile

13 lines
138 B
Makefile
Raw Permalink Normal View History

2022-08-24 12:22:44 +03:00
.PHONY: check
check:
cargo check --all
.PHONY: fmt
fmt:
cargo fmt --all
2023-03-31 20:06:56 +03:00
cargo sort -w || true
2022-08-24 12:22:44 +03:00
.PHONY: lint
lint:
cargo clippy --all