@@ -1162,6 +1162,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
11621162 LintId :: of( & needless_pass_by_value:: NEEDLESS_PASS_BY_VALUE ) ,
11631163 LintId :: of( & non_expressive_names:: SIMILAR_NAMES ) ,
11641164 LintId :: of( & option_if_let_else:: OPTION_IF_LET_ELSE ) ,
1165+ LintId :: of( & ranges:: RANGE_MINUS_ONE ) ,
11651166 LintId :: of( & ranges:: RANGE_PLUS_ONE ) ,
11661167 LintId :: of( & shadow:: SHADOW_UNRELATED ) ,
11671168 LintId :: of( & strings:: STRING_ADD_ASSIGN ) ,
@@ -1382,7 +1383,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
13821383 LintId :: of( & ptr:: PTR_ARG ) ,
13831384 LintId :: of( & ptr_offset_with_cast:: PTR_OFFSET_WITH_CAST ) ,
13841385 LintId :: of( & question_mark:: QUESTION_MARK ) ,
1385- LintId :: of( & ranges:: RANGE_MINUS_ONE ) ,
13861386 LintId :: of( & ranges:: RANGE_ZIP_WITH_LEN ) ,
13871387 LintId :: of( & ranges:: REVERSED_EMPTY_RANGES ) ,
13881388 LintId :: of( & redundant_clone:: REDUNDANT_CLONE ) ,
@@ -1598,7 +1598,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
15981598 LintId :: of( & partialeq_ne_impl:: PARTIALEQ_NE_IMPL ) ,
15991599 LintId :: of( & precedence:: PRECEDENCE ) ,
16001600 LintId :: of( & ptr_offset_with_cast:: PTR_OFFSET_WITH_CAST ) ,
1601- LintId :: of( & ranges:: RANGE_MINUS_ONE ) ,
16021601 LintId :: of( & ranges:: RANGE_ZIP_WITH_LEN ) ,
16031602 LintId :: of( & reference:: DEREF_ADDROF ) ,
16041603 LintId :: of( & reference:: REF_IN_DEREF ) ,
0 commit comments