@@ -606,6 +606,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
606606 & methods:: GET_UNWRAP ,
607607 & methods:: INEFFICIENT_TO_STRING ,
608608 & methods:: INTO_ITER_ON_REF ,
609+ & methods:: ITERATOR_STEP_BY_ZERO ,
609610 & methods:: ITER_CLONED_COLLECT ,
610611 & methods:: ITER_NTH ,
611612 & methods:: ITER_SKIP_NEXT ,
@@ -699,7 +700,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
699700 & ptr:: PTR_ARG ,
700701 & ptr_offset_with_cast:: PTR_OFFSET_WITH_CAST ,
701702 & question_mark:: QUESTION_MARK ,
702- & ranges:: ITERATOR_STEP_BY_ZERO ,
703703 & ranges:: RANGE_MINUS_ONE ,
704704 & ranges:: RANGE_PLUS_ONE ,
705705 & ranges:: RANGE_ZIP_WITH_LEN ,
@@ -1179,6 +1179,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
11791179 LintId :: of( & methods:: FLAT_MAP_IDENTITY ) ,
11801180 LintId :: of( & methods:: INEFFICIENT_TO_STRING ) ,
11811181 LintId :: of( & methods:: INTO_ITER_ON_REF ) ,
1182+ LintId :: of( & methods:: ITERATOR_STEP_BY_ZERO ) ,
11821183 LintId :: of( & methods:: ITER_CLONED_COLLECT ) ,
11831184 LintId :: of( & methods:: ITER_NTH ) ,
11841185 LintId :: of( & methods:: ITER_SKIP_NEXT ) ,
@@ -1244,7 +1245,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
12441245 LintId :: of( & ptr:: PTR_ARG ) ,
12451246 LintId :: of( & ptr_offset_with_cast:: PTR_OFFSET_WITH_CAST ) ,
12461247 LintId :: of( & question_mark:: QUESTION_MARK ) ,
1247- LintId :: of( & ranges:: ITERATOR_STEP_BY_ZERO ) ,
12481248 LintId :: of( & ranges:: RANGE_MINUS_ONE ) ,
12491249 LintId :: of( & ranges:: RANGE_PLUS_ONE ) ,
12501250 LintId :: of( & ranges:: RANGE_ZIP_WITH_LEN ) ,
@@ -1521,6 +1521,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
15211521 LintId :: of( & mem_discriminant:: MEM_DISCRIMINANT_NON_ENUM ) ,
15221522 LintId :: of( & mem_replace:: MEM_REPLACE_WITH_UNINIT ) ,
15231523 LintId :: of( & methods:: CLONE_DOUBLE_REF ) ,
1524+ LintId :: of( & methods:: ITERATOR_STEP_BY_ZERO ) ,
15241525 LintId :: of( & methods:: TEMPORARY_CSTRING_AS_PTR ) ,
15251526 LintId :: of( & methods:: UNINIT_ASSUMED_INIT ) ,
15261527 LintId :: of( & methods:: ZST_OFFSET ) ,
@@ -1533,7 +1534,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
15331534 LintId :: of( & non_copy_const:: DECLARE_INTERIOR_MUTABLE_CONST ) ,
15341535 LintId :: of( & open_options:: NONSENSICAL_OPEN_OPTIONS ) ,
15351536 LintId :: of( & ptr:: MUT_FROM_REF ) ,
1536- LintId :: of( & ranges:: ITERATOR_STEP_BY_ZERO ) ,
15371537 LintId :: of( & regex:: INVALID_REGEX ) ,
15381538 LintId :: of( & serde_api:: SERDE_API_MISUSE ) ,
15391539 LintId :: of( & suspicious_trait_impl:: SUSPICIOUS_ARITHMETIC_IMPL ) ,
0 commit comments