@@ -1138,6 +1138,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1138
1138
LintId :: of( & loops:: EXPLICIT_INTO_ITER_LOOP ) ,
1139
1139
LintId :: of( & loops:: EXPLICIT_ITER_LOOP ) ,
1140
1140
LintId :: of( & macro_use:: MACRO_USE_IMPORTS ) ,
1141
+ LintId :: of( & match_on_vec_items:: MATCH_ON_VEC_ITEMS ) ,
1141
1142
LintId :: of( & matches:: MATCH_BOOL ) ,
1142
1143
LintId :: of( & matches:: SINGLE_MATCH_ELSE ) ,
1143
1144
LintId :: of( & methods:: FILTER_MAP ) ,
@@ -1283,7 +1284,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1283
1284
LintId :: of( & map_clone:: MAP_CLONE ) ,
1284
1285
LintId :: of( & map_unit_fn:: OPTION_MAP_UNIT_FN ) ,
1285
1286
LintId :: of( & map_unit_fn:: RESULT_MAP_UNIT_FN ) ,
1286
- LintId :: of( & match_on_vec_items:: MATCH_ON_VEC_ITEMS ) ,
1287
1287
LintId :: of( & matches:: INFALLIBLE_DESTRUCTURING_MATCH ) ,
1288
1288
LintId :: of( & matches:: MATCH_AS_REF ) ,
1289
1289
LintId :: of( & matches:: MATCH_OVERLAPPING_ARM ) ,
@@ -1647,7 +1647,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1647
1647
LintId :: of( & loops:: NEVER_LOOP ) ,
1648
1648
LintId :: of( & loops:: REVERSE_RANGE_LOOP ) ,
1649
1649
LintId :: of( & loops:: WHILE_IMMUTABLE_CONDITION ) ,
1650
- LintId :: of( & match_on_vec_items:: MATCH_ON_VEC_ITEMS ) ,
1651
1650
LintId :: of( & mem_discriminant:: MEM_DISCRIMINANT_NON_ENUM ) ,
1652
1651
LintId :: of( & mem_replace:: MEM_REPLACE_WITH_UNINIT ) ,
1653
1652
LintId :: of( & methods:: CLONE_DOUBLE_REF ) ,
0 commit comments