make lint: run fmt after clippy
some files are created during build, fmt errors out on missing files
This commit is contained in:
parent
9a063d89a7
commit
9bbfb5ed75
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -15,10 +15,10 @@ docs:
|
|||
|
||||
.PHONY: lint
|
||||
lint:
|
||||
cargo fmt --all -- --check
|
||||
cargo clippy --workspace -- -D warnings
|
||||
cargo clippy --workspace --no-default-features -- -D warnings
|
||||
cargo clippy --workspace --all-features -- -D warnings
|
||||
cargo fmt --all -- --check
|
||||
|
||||
.PHONY: check
|
||||
check:
|
||||
|
|
Loading…
Reference in a new issue