Skip to content

Commit

Permalink
make: run lint on main crate only
Browse files Browse the repository at this point in the history
  • Loading branch information
hellux committed Jan 9, 2025
1 parent 7e008d5 commit c92d7ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ docs:

.PHONY: lint
lint:
cargo clippy --workspace -- -D warnings
cargo clippy --workspace --no-default-features -- -D warnings
cargo clippy --workspace --all-features -- -D warnings
cargo clippy -- -D warnings
cargo clippy --no-default-features -- -D warnings
cargo clippy --all-features -- -D warnings
cargo fmt --all -- --check

.PHONY: check
Expand Down

0 comments on commit c92d7ab

Please sign in to comment.