Remove RUSTFLAGS in make lint

Cargo recompiles everything when the RUSTFLAGS change so this makes lint slower than they need to be.
Removing this doesn't miss any lints because the clippy pass also has `--deny warnings`# Please enter the commit message for your changes. Lines starting
This commit is contained in:
Sosthène Guédon
2023-03-24 16:32:11 +01:00
parent 9a4d0ba74b
commit daf3da680d
+1 -1
View File
@@ -21,7 +21,7 @@ check:
.PHONY: lint
lint:
cargo fmt --check
RUSTLFAGS='-Dwarnings' cargo check --all-features --all-targets
cargo check --all-features --all-targets
cargo clippy --all-targets --all-features -- -Dwarnings
RUSTDOCFLAGS='-Dwarnings' cargo doc --all-features
reuse lint