packages/helix.nix: add clippy flags

This commit is contained in:
Bloxx12 2025-05-05 11:06:51 +02:00
commit ee58fd0628
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E

View file

@ -216,7 +216,10 @@
rust-analyzer = {
config = {
check.command = "clippy";
check = {
command = "clippy";
extraArgs = ["--" "-W" "clippy::pedantic" "-W" "clippy::nursery" "-W" "clippy::perf"];
};
cargo.features = "all";
};
};