We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b8141b commit 4020790Copy full SHA for 4020790
crates/flycheck/src/lib.rs
@@ -297,8 +297,12 @@ impl FlycheckActor {
297
let mut cmd = Command::new(toolchain::cargo());
298
cmd.arg(command);
299
cmd.current_dir(&self.root);
300
- cmd.args(["--workspace", "--message-format=json", "--manifest-path"])
301
- .arg(self.root.join("Cargo.toml").as_os_str());
+ cmd.args([
+ "--workspace",
302
+ "--message-format=json-diagnostic-rendered-ansi",
303
+ "--manifest-path",
304
+ ])
305
+ .arg(self.root.join("Cargo.toml").as_os_str());
306
307
for target in target_triples {
308
cmd.args(["--target", target.as_str()]);
0 commit comments