@@ -1068,6 +1068,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
10681068 LintId :: of( & needless_continue:: NEEDLESS_CONTINUE ) ,
10691069 LintId :: of( & needless_pass_by_value:: NEEDLESS_PASS_BY_VALUE ) ,
10701070 LintId :: of( & non_expressive_names:: SIMILAR_NAMES ) ,
1071+ LintId :: of( & ranges:: RANGE_PLUS_ONE ) ,
10711072 LintId :: of( & replace_consts:: REPLACE_CONSTS ) ,
10721073 LintId :: of( & shadow:: SHADOW_UNRELATED ) ,
10731074 LintId :: of( & strings:: STRING_ADD_ASSIGN ) ,
@@ -1277,7 +1278,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
12771278 LintId :: of( & ptr_offset_with_cast:: PTR_OFFSET_WITH_CAST ) ,
12781279 LintId :: of( & question_mark:: QUESTION_MARK ) ,
12791280 LintId :: of( & ranges:: RANGE_MINUS_ONE ) ,
1280- LintId :: of( & ranges:: RANGE_PLUS_ONE ) ,
12811281 LintId :: of( & ranges:: RANGE_ZIP_WITH_LEN ) ,
12821282 LintId :: of( & redundant_clone:: REDUNDANT_CLONE ) ,
12831283 LintId :: of( & redundant_field_names:: REDUNDANT_FIELD_NAMES ) ,
@@ -1495,7 +1495,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
14951495 LintId :: of( & precedence:: PRECEDENCE ) ,
14961496 LintId :: of( & ptr_offset_with_cast:: PTR_OFFSET_WITH_CAST ) ,
14971497 LintId :: of( & ranges:: RANGE_MINUS_ONE ) ,
1498- LintId :: of( & ranges:: RANGE_PLUS_ONE ) ,
14991498 LintId :: of( & ranges:: RANGE_ZIP_WITH_LEN ) ,
15001499 LintId :: of( & reference:: DEREF_ADDROF ) ,
15011500 LintId :: of( & reference:: REF_IN_DEREF ) ,
0 commit comments