1 2 3 4 5 6 7 8 9 10 11
.PHONY: fmt fmt: cargo fmt --all -- --check .PHONY: lint lint: cargo clippy --all-targets -- -D warnings .PHONY: test test: cargo test