diff --git a/Makefile b/Makefile index d92f49d..bbb91d6 100644 --- a/Makefile +++ b/Makefile @@ -18,8 +18,10 @@ install-revive: format: cargo fmt --all --check +clippy: + cargo clippy --all-features --workspace --tests --benches -- --deny warnings --allow dead_code + test: format clippy test-cli test-workspace - cargo test --workspace test-integration: install-bin cargo test --package revive-integration @@ -45,9 +47,6 @@ bench: install-bin cargo criterion --all --all-features --message-format=json \ | criterion-table > crates/benchmarks/BENCHMARKS.md -clippy: - cargo clippy --all-features --workspace --tests --benches -- --deny warnings --allow dead_code - docs: docs-build mdbook serve --open docs/