diff options
| author | bors <bors@rust-lang.org> | 2020-12-18 09:36:05 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2020-12-18 09:36:05 +0000 |
| commit | 896d82f7ff64644656bda7a4ed8bbd55ca3b7619 (patch) | |
| tree | f22cc0396dd874e5a3b3033cd31c96947697fe8f | |
| parent | 88323e856d01650f6477350ad1304c26497b8ff7 (diff) | |
| parent | 920c9a4aaefbc4bade7032e32ec099bff1c7b58a (diff) | |
| download | rust-896d82f7ff64644656bda7a4ed8bbd55ca3b7619.tar.gz rust-896d82f7ff64644656bda7a4ed8bbd55ca3b7619.zip | |
Auto merge of #6465 - Suyash458:master, r=flip1995
add more lints to msrv docs Fixes #6097 changelog: None
| -rw-r--r-- | clippy_lints/src/utils/conf.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/utils/conf.rs b/clippy_lints/src/utils/conf.rs index 6403ff6dad1..32d7840a451 100644 --- a/clippy_lints/src/utils/conf.rs +++ b/clippy_lints/src/utils/conf.rs @@ -106,7 +106,7 @@ macro_rules! define_Conf { pub use self::helpers::Conf; define_Conf! { - /// Lint: MANUAL_NON_EXHAUSTIVE, MANUAL_STRIP, OPTION_AS_REF_DEREF, MATCH_LIKE_MATCHES_MACRO. The minimum rust version that the project supports + /// Lint: REDUNDANT_FIELD_NAMES, REDUNDANT_STATIC_LIFETIMES, FILTER_MAP_NEXT, CHECKED_CONVERSIONS, MANUAL_RANGE_CONTAINS, USE_SELF, MEM_REPLACE_WITH_DEFAULT, MANUAL_NON_EXHAUSTIVE, OPTION_AS_REF_DEREF, MAP_UNWRAP_OR, MATCH_LIKE_MATCHES_MACRO, MANUAL_STRIP, MISSING_CONST_FOR_FN. The minimum rust version that the project supports (msrv, "msrv": Option<String>, None), /// Lint: BLACKLISTED_NAME. The list of blacklisted names to lint about. NB: `bar` is not here since it has legitimate uses (blacklisted_names, "blacklisted_names": Vec<String>, ["foo", "baz", "quux"].iter().map(ToString::to_string).collect()), |
