about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRicky <Ricky@Hosfelt.io>2020-12-03 17:22:03 -0500
committerRicky <Ricky@Hosfelt.io>2020-12-03 17:22:03 -0500
commitf633ef6bba70b91f0415316fe10bb1f9c016ba33 (patch)
tree5738631f4e8be4052e10d98ba74fd54d1d865711
parent8135ab8a22f4aa6ad071574798397aa131377ca2 (diff)
downloadrust-f633ef6bba70b91f0415316fe10bb1f9c016ba33.tar.gz
rust-f633ef6bba70b91f0415316fe10bb1f9c016ba33.zip
didn't update lint correctly
-rw-r--r--clippy_lints/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/lib.rs b/clippy_lints/src/lib.rs
index 167e5b6b87f..013406347f2 100644
--- a/clippy_lints/src/lib.rs
+++ b/clippy_lints/src/lib.rs
@@ -1214,6 +1214,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
         LintId::of(&integer_division::INTEGER_DIVISION),
         LintId::of(&let_underscore::LET_UNDERSCORE_MUST_USE),
         LintId::of(&literal_representation::DECIMAL_LITERAL_REPRESENTATION),
+        LintId::of(&map_err_ignore::MAP_ERR_IGNORE),
         LintId::of(&matches::REST_PAT_IN_FULLY_BOUND_STRUCTS),
         LintId::of(&matches::WILDCARD_ENUM_MATCH_ARM),
         LintId::of(&mem_forget::MEM_FORGET),
@@ -1280,7 +1281,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
         LintId::of(&loops::EXPLICIT_ITER_LOOP),
         LintId::of(&macro_use::MACRO_USE_IMPORTS),
         LintId::of(&manual_ok_or::MANUAL_OK_OR),
-        LintId::of(&map_err_ignore::MAP_ERR_IGNORE),
         LintId::of(&match_on_vec_items::MATCH_ON_VEC_ITEMS),
         LintId::of(&matches::MATCH_BOOL),
         LintId::of(&matches::MATCH_SAME_ARMS),