mailpot/Makefile

14 lines
287 B
Makefile
Raw Normal View History

2022-08-24 12:22:44 +03:00
.PHONY: check
check:
cargo check --all
.PHONY: fmt
fmt:
cargo +nightly fmt --all || cargo fmt --all
cargo sort -w || printf "cargo-sort binary not found in PATH.\n"
djhtml -i web/src/templates/* || printf "djhtml binary not found in PATH.\n"
2022-08-24 12:22:44 +03:00
.PHONY: lint
lint:
cargo clippy --all