I'm using this in VSCode `settings.json`: ```json { "rust-analyzer.checkOnSave.command": "clippy", } ``` it works good. But I would like to have `rustc` errors before and only after the `clippy` errors/warnings because sometimes `clippy` can take many more seconds than `rustc`. Is there a way to invert the order?
I'm using this in VSCode
settings.json:{ "rust-analyzer.checkOnSave.command": "clippy", }it works good.
But I would like to have
rustcerrors before and only after theclippyerrors/warnings because sometimesclippycan take many more seconds thanrustc.Is there a way to invert the order?