helix: languages: make clippy more restrictive

This commit is contained in:
Bloxx12 2025-06-12 20:08:21 +02:00
commit ffc32faed0
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E

View file

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