1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
.PHONY: build fmt clippy test clean pre-commit build: cargo build fmt: cargo fmt clippy: cargo clippy test: cargo test run: cargo run -- parse "regex.txt" clean: cargo clean pre-commit: fmt clippy test @echo "Pre-commit checks complete."