Skip to content

Commit

Permalink
chore(rust): More clippy in Makefile (#15340)
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego authored Mar 27, 2024
1 parent 1f3e1c4 commit 8334a67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ check: ## Run cargo check with all features

.PHONY: clippy
clippy: ## Run clippy with all features
cargo clippy -p polars --all-features -- -W clippy::dbg_macro
cargo clippy --all-targets --all-features -- -W clippy::dbg_macro

.PHONY: clippy-default
clippy-default: ## Run clippy with default features
cargo clippy -p polars -- -W clippy::dbg_macro
cargo clippy --all-targets -- -W clippy::dbg_macro

.PHONY: pre-commit
pre-commit: fmt clippy clippy-default ## Run autoformatting and linting
Expand Down

0 comments on commit 8334a67

Please sign in to comment.