Rollup merge of #63781 - mati865:clippy, r=oli-obk,ehuss

Run Clippy without json-rendered flag

Removed in https://github.com/rust-lang/rust/pull/62766

Replacing it with `--json=diagnostic-rendered-ansi` fails:
```
error: using `--json` requires also using `--error-format=json`
```
Running `./x.py clippy src/libstd` locally works fine (with colors) on Linux so I don't know if there is something to fix.
This commit is contained in:
Mazdak Farrokhzad 2019-08-21 17:31:45 +02:00 committed by GitHub
commit 1294774e94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -875,8 +875,7 @@ impl<'a> Builder<'a> {
}
if cmd == "clippy" {
extra_args.push_str("-Zforce-unstable-if-unmarked -Zunstable-options \
--json-rendered=termcolor");
extra_args.push_str("-Zforce-unstable-if-unmarked");
}
if !extra_args.is_empty() {