make lint: run clippy on whole workspace
This commit is contained in:
parent
d0ed14ae39
commit
9a063d89a7
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -16,9 +16,9 @@ docs:
|
|||
.PHONY: lint
|
||||
lint:
|
||||
cargo fmt --all -- --check
|
||||
cargo clippy -- -D warnings
|
||||
cargo clippy --no-default-features -- -D warnings
|
||||
cargo clippy --all-features -- -D warnings
|
||||
cargo clippy --workspace -- -D warnings
|
||||
cargo clippy --workspace --no-default-features -- -D warnings
|
||||
cargo clippy --workspace --all-features -- -D warnings
|
||||
|
||||
.PHONY: check
|
||||
check:
|
||||
|
|
Loading…
Reference in a new issue