We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
let_underscore
GROUP_DESCRIPTIONS
1 parent 7e485bf commit 1421cffCopy full SHA for 1421cff
src/tools/lint-docs/src/groups.rs
@@ -8,6 +8,7 @@ use std::process::Command;
8
/// Descriptions of rustc lint groups.
9
static GROUP_DESCRIPTIONS: &[(&str, &str)] = &[
10
("unused", "Lints that detect things being declared but not used, or excess syntax"),
11
+ ("let-underscore", "Lints that detect wildcard let bindings that are likely to be invalid"),
12
("rustdoc", "Rustdoc-specific lints"),
13
("rust-2018-idioms", "Lints to nudge you toward idiomatic features of Rust 2018"),
14
("nonstandard-style", "Violation of standard naming conventions"),
0 commit comments