Skip to content

Commit

Permalink
Auto merge of rust-lang#13234 - Alexendoo:lintcheck-doc-links, r=xFre…
Browse files Browse the repository at this point in the history
…dnet

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
  • Loading branch information
bors committed Aug 8, 2024
2 parents f2deab3 + 17de8fb commit bfb10f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lintcheck/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bfb10f4

Please sign in to comment.