make lint: run clippy on whole workspace

This commit is contained in:
Noah Hellman 2023-04-29 13:43:06 +02:00
parent d0ed14ae39
commit 9a063d89a7

View file

@ -16,9 +16,9 @@ docs:
.PHONY: lint .PHONY: lint
lint: lint:
cargo fmt --all -- --check cargo fmt --all -- --check
cargo clippy -- -D warnings cargo clippy --workspace -- -D warnings
cargo clippy --no-default-features -- -D warnings cargo clippy --workspace --no-default-features -- -D warnings
cargo clippy --all-features -- -D warnings cargo clippy --workspace --all-features -- -D warnings
.PHONY: check .PHONY: check
check: check: