Skip to content

Commit 1421cff

Browse files
committed
Add let_underscore lint group to GROUP_DESCRIPTIONS.
1 parent 7e485bf commit 1421cff

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/tools/lint-docs/src/groups.rs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ use std::process::Command;
88
/// Descriptions of rustc lint groups.
99
static GROUP_DESCRIPTIONS: &[(&str, &str)] = &[
1010
("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"),
1112
("rustdoc", "Rustdoc-specific lints"),
1213
("rust-2018-idioms", "Lints to nudge you toward idiomatic features of Rust 2018"),
1314
("nonstandard-style", "Violation of standard naming conventions"),

0 commit comments

Comments
 (0)