We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f2deab3 + 17de8fb commit bfb10f4Copy full SHA for bfb10f4
lintcheck/src/main.rs
@@ -119,7 +119,8 @@ impl Crate {
119
cmd.arg(if config.fix { "fix" } else { "check" })
120
.arg("--quiet")
121
.current_dir(&self.path)
122
- .env("CLIPPY_ARGS", clippy_args.join("__CLIPPY_HACKERY__"));
+ .env("CLIPPY_ARGS", clippy_args.join("__CLIPPY_HACKERY__"))
123
+ .env("CLIPPY_DISABLE_DOCS_LINKS", "1");
124
125
if let Some(server) = server {
126
// `cargo clippy` is a wrapper around `cargo check` that mainly sets `RUSTC_WORKSPACE_WRAPPER` to
0 commit comments