@@ -622,6 +622,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
622622 & len_zero:: LEN_WITHOUT_IS_EMPTY ,
623623 & len_zero:: LEN_ZERO ,
624624 & let_if_seq:: USELESS_LET_IF_SEQ ,
625+ & let_underscore:: LET_UNDERSCORE_DROP ,
625626 & let_underscore:: LET_UNDERSCORE_LOCK ,
626627 & let_underscore:: LET_UNDERSCORE_MUST_USE ,
627628 & lifetimes:: EXTRA_UNUSED_LIFETIMES ,
@@ -832,6 +833,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
832833 & stable_sort_primitive:: STABLE_SORT_PRIMITIVE ,
833834 & strings:: STRING_ADD ,
834835 & strings:: STRING_ADD_ASSIGN ,
836+ & strings:: STRING_FROM_UTF8_AS_BYTES ,
835837 & strings:: STRING_LIT_AS_BYTES ,
836838 & suspicious_trait_impl:: SUSPICIOUS_ARITHMETIC_IMPL ,
837839 & suspicious_trait_impl:: SUSPICIOUS_OP_ASSIGN_IMPL ,
@@ -1239,6 +1241,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
12391241 LintId :: of( & infinite_iter:: MAYBE_INFINITE_ITER ) ,
12401242 LintId :: of( & items_after_statements:: ITEMS_AFTER_STATEMENTS ) ,
12411243 LintId :: of( & large_stack_arrays:: LARGE_STACK_ARRAYS ) ,
1244+ LintId :: of( & let_underscore:: LET_UNDERSCORE_DROP ) ,
12421245 LintId :: of( & literal_representation:: LARGE_DIGIT_GROUPS ) ,
12431246 LintId :: of( & literal_representation:: UNREADABLE_LITERAL ) ,
12441247 LintId :: of( & loops:: EXPLICIT_INTO_ITER_LOOP ) ,
@@ -1527,6 +1530,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
15271530 LintId :: of( & single_component_path_imports:: SINGLE_COMPONENT_PATH_IMPORTS ) ,
15281531 LintId :: of( & slow_vector_initialization:: SLOW_VECTOR_INITIALIZATION ) ,
15291532 LintId :: of( & stable_sort_primitive:: STABLE_SORT_PRIMITIVE ) ,
1533+ LintId :: of( & strings:: STRING_FROM_UTF8_AS_BYTES ) ,
15301534 LintId :: of( & suspicious_trait_impl:: SUSPICIOUS_ARITHMETIC_IMPL ) ,
15311535 LintId :: of( & suspicious_trait_impl:: SUSPICIOUS_OP_ASSIGN_IMPL ) ,
15321536 LintId :: of( & swap:: ALMOST_SWAPPED ) ,
@@ -1752,6 +1756,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
17521756 LintId :: of( & reference:: DEREF_ADDROF ) ,
17531757 LintId :: of( & reference:: REF_IN_DEREF ) ,
17541758 LintId :: of( & repeat_once:: REPEAT_ONCE ) ,
1759+ LintId :: of( & strings:: STRING_FROM_UTF8_AS_BYTES ) ,
17551760 LintId :: of( & swap:: MANUAL_SWAP ) ,
17561761 LintId :: of( & temporary_assignment:: TEMPORARY_ASSIGNMENT ) ,
17571762 LintId :: of( & transmute:: CROSSPOINTER_TRANSMUTE ) ,
0 commit comments