Skip to content

Commit bfb10f4

Browse files
committed
Auto merge of rust-lang#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
2 parents f2deab3 + 17de8fb commit bfb10f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lintcheck/src/main.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,8 @@ impl Crate {
119119
cmd.arg(if config.fix { "fix" } else { "check" })
120120
.arg("--quiet")
121121
.current_dir(&self.path)
122-
.env("CLIPPY_ARGS", clippy_args.join("__CLIPPY_HACKERY__"));
122+
.env("CLIPPY_ARGS", clippy_args.join("__CLIPPY_HACKERY__"))
123+
.env("CLIPPY_DISABLE_DOCS_LINKS", "1");
123124

124125
if let Some(server) = server {
125126
// `cargo clippy` is a wrapper around `cargo check` that mainly sets `RUSTC_WORKSPACE_WRAPPER` to

0 commit comments

Comments
 (0)