We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2deab3 commit 17de8fbCopy full SHA for 17de8fb
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