Skip to content

Commit 17de8fb

Browse files
committed
lintcheck: disable doc links
1 parent f2deab3 commit 17de8fb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lintcheck/src/main.rs

Lines changed: 2 additions & 1 deletion
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)