helix/languages: make clippy pedantic warnings not erorr

This commit is contained in:
Bloxx12 2025-07-08 13:56:16 +02:00
commit ec1b31cabc
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E

View file

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