@@ -780,7 +780,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
780780 & shadow:: SHADOW_UNRELATED ,
781781 & single_component_path_imports:: SINGLE_COMPONENT_PATH_IMPORTS ,
782782 & slow_vector_initialization:: SLOW_VECTOR_INITIALIZATION ,
783- & unnecessary_sort_by:: UNNECESSARY_SORT_BY ,
784783 & strings:: STRING_ADD ,
785784 & strings:: STRING_ADD_ASSIGN ,
786785 & strings:: STRING_LIT_AS_BYTES ,
@@ -835,6 +834,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
835834 & unicode:: ZERO_WIDTH_SPACE ,
836835 & unnamed_address:: FN_ADDRESS_COMPARISONS ,
837836 & unnamed_address:: VTABLE_ADDRESS_COMPARISONS ,
837+ & unnecessary_sort_by:: UNNECESSARY_SORT_BY ,
838838 & unsafe_removed_from_name:: UNSAFE_REMOVED_FROM_NAME ,
839839 & unused_io_amount:: UNUSED_IO_AMOUNT ,
840840 & unused_self:: UNUSED_SELF ,
@@ -1394,7 +1394,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
13941394 LintId :: of( & serde_api:: SERDE_API_MISUSE ) ,
13951395 LintId :: of( & single_component_path_imports:: SINGLE_COMPONENT_PATH_IMPORTS ) ,
13961396 LintId :: of( & slow_vector_initialization:: SLOW_VECTOR_INITIALIZATION ) ,
1397- LintId :: of( & unnecessary_sort_by:: UNNECESSARY_SORT_BY ) ,
13981397 LintId :: of( & strings:: STRING_LIT_AS_BYTES ) ,
13991398 LintId :: of( & suspicious_trait_impl:: SUSPICIOUS_ARITHMETIC_IMPL ) ,
14001399 LintId :: of( & suspicious_trait_impl:: SUSPICIOUS_OP_ASSIGN_IMPL ) ,
@@ -1431,6 +1430,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
14311430 LintId :: of( & unicode:: ZERO_WIDTH_SPACE ) ,
14321431 LintId :: of( & unnamed_address:: FN_ADDRESS_COMPARISONS ) ,
14331432 LintId :: of( & unnamed_address:: VTABLE_ADDRESS_COMPARISONS ) ,
1433+ LintId :: of( & unnecessary_sort_by:: UNNECESSARY_SORT_BY ) ,
14341434 LintId :: of( & unsafe_removed_from_name:: UNSAFE_REMOVED_FROM_NAME ) ,
14351435 LintId :: of( & unused_io_amount:: UNUSED_IO_AMOUNT ) ,
14361436 LintId :: of( & unwrap:: PANICKING_UNWRAP ) ,
@@ -1596,7 +1596,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
15961596 LintId :: of( & ranges:: RANGE_ZIP_WITH_LEN ) ,
15971597 LintId :: of( & reference:: DEREF_ADDROF ) ,
15981598 LintId :: of( & reference:: REF_IN_DEREF ) ,
1599- LintId :: of( & unnecessary_sort_by:: UNNECESSARY_SORT_BY ) ,
16001599 LintId :: of( & swap:: MANUAL_SWAP ) ,
16011600 LintId :: of( & temporary_assignment:: TEMPORARY_ASSIGNMENT ) ,
16021601 LintId :: of( & transmute:: CROSSPOINTER_TRANSMUTE ) ,
@@ -1613,6 +1612,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
16131612 LintId :: of( & types:: UNIT_ARG ) ,
16141613 LintId :: of( & types:: UNNECESSARY_CAST ) ,
16151614 LintId :: of( & types:: VEC_BOX ) ,
1615+ LintId :: of( & unnecessary_sort_by:: UNNECESSARY_SORT_BY ) ,
16161616 LintId :: of( & unwrap:: UNNECESSARY_UNWRAP ) ,
16171617 LintId :: of( & useless_conversion:: USELESS_CONVERSION ) ,
16181618 LintId :: of( & zero_div_zero:: ZERO_DIVIDED_BY_ZERO ) ,
0 commit comments