fix(rust-analyzer): enable additional diagnostics

This commit is contained in:
2025-10-02 06:00:40 +02:00
parent eb5b557f97
commit b87cabf6d8
+12
View File
@@ -472,6 +472,18 @@ function M.setup()
end),
settings = {
["rust-analyzer"] = {
check = {
command = "clippy",
extraArgs = {
"--",
"-Wclippy::pedantic",
},
},
diagnostics = {
styleLints = {
enable = true,
},
},
inlayHints = {
chainingHints = {
enable = false,