@@ -734,6 +734,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
734734 & mem_replace:: MEM_REPLACE_WITH_DEFAULT ,
735735 & mem_replace:: MEM_REPLACE_WITH_UNINIT ,
736736 & methods:: BIND_INSTEAD_OF_MAP ,
737+ & methods:: BYTES_NTH ,
737738 & methods:: CHARS_LAST_CMP ,
738739 & methods:: CHARS_NEXT_CMP ,
739740 & methods:: CLONE_DOUBLE_REF ,
@@ -1531,6 +1532,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
15311532 LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
15321533 LintId :: of( & mem_replace:: MEM_REPLACE_WITH_UNINIT ) ,
15331534 LintId :: of( & methods:: BIND_INSTEAD_OF_MAP ) ,
1535+ LintId :: of( & methods:: BYTES_NTH ) ,
15341536 LintId :: of( & methods:: CHARS_LAST_CMP ) ,
15351537 LintId :: of( & methods:: CHARS_NEXT_CMP ) ,
15361538 LintId :: of( & methods:: CLONE_DOUBLE_REF ) ,
@@ -1749,6 +1751,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
17491751 LintId :: of( & matches:: SINGLE_MATCH ) ,
17501752 LintId :: of( & mem_replace:: MEM_REPLACE_OPTION_WITH_NONE ) ,
17511753 LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
1754+ LintId :: of( & methods:: BYTES_NTH ) ,
17521755 LintId :: of( & methods:: CHARS_LAST_CMP ) ,
17531756 LintId :: of( & methods:: CHARS_NEXT_CMP ) ,
17541757 LintId :: of( & methods:: FROM_ITER_INSTEAD_OF_COLLECT ) ,
0 commit comments