make lint: run fmt after clippy

some files are created during build, fmt errors out on missing files
This commit is contained in:
Noah Hellman 2023-04-29 13:34:23 +02:00
parent 9a063d89a7
commit 9bbfb5ed75

View file

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