mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
Auto merge of #13234 - Alexendoo:lintcheck-doc-links, r=xFrednet
lintcheck: disable doc links Removes the `help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#...` line to make the reports more concise r? `@xFrednet` changelog: none
This commit is contained in:
commit
bfb10f431d
@ -119,7 +119,8 @@ impl Crate {
|
||||
cmd.arg(if config.fix { "fix" } else { "check" })
|
||||
.arg("--quiet")
|
||||
.current_dir(&self.path)
|
||||
.env("CLIPPY_ARGS", clippy_args.join("__CLIPPY_HACKERY__"));
|
||||
.env("CLIPPY_ARGS", clippy_args.join("__CLIPPY_HACKERY__"))
|
||||
.env("CLIPPY_DISABLE_DOCS_LINKS", "1");
|
||||
|
||||
if let Some(server) = server {
|
||||
// `cargo clippy` is a wrapper around `cargo check` that mainly sets `RUSTC_WORKSPACE_WRAPPER` to
|
||||
|
Loading…
Reference in New Issue
Block a user