@@ -304,6 +304,7 @@ mod serde_api;
304304mod shadow;
305305mod single_component_path_imports;
306306mod slow_vector_initialization;
307+ mod sort_by_key_reverse;
307308mod strings;
308309mod suspicious_trait_impl;
309310mod swap;
@@ -779,6 +780,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
779780 & shadow:: SHADOW_UNRELATED ,
780781 & single_component_path_imports:: SINGLE_COMPONENT_PATH_IMPORTS ,
781782 & slow_vector_initialization:: SLOW_VECTOR_INITIALIZATION ,
783+ & sort_by_key_reverse:: SORT_BY_KEY_REVERSE ,
782784 & strings:: STRING_ADD ,
783785 & strings:: STRING_ADD_ASSIGN ,
784786 & strings:: STRING_LIT_AS_BYTES ,
@@ -1391,6 +1393,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
13911393 LintId :: of( & serde_api:: SERDE_API_MISUSE ) ,
13921394 LintId :: of( & single_component_path_imports:: SINGLE_COMPONENT_PATH_IMPORTS ) ,
13931395 LintId :: of( & slow_vector_initialization:: SLOW_VECTOR_INITIALIZATION ) ,
1396+ LintId :: of( & sort_by_key_reverse:: SORT_BY_KEY_REVERSE ) ,
13941397 LintId :: of( & strings:: STRING_LIT_AS_BYTES ) ,
13951398 LintId :: of( & suspicious_trait_impl:: SUSPICIOUS_ARITHMETIC_IMPL ) ,
13961399 LintId :: of( & suspicious_trait_impl:: SUSPICIOUS_OP_ASSIGN_IMPL ) ,
@@ -1592,6 +1595,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
15921595 LintId :: of( & ranges:: RANGE_ZIP_WITH_LEN ) ,
15931596 LintId :: of( & reference:: DEREF_ADDROF ) ,
15941597 LintId :: of( & reference:: REF_IN_DEREF ) ,
1598+ LintId :: of( & sort_by_key_reverse:: SORT_BY_KEY_REVERSE ) ,
15951599 LintId :: of( & swap:: MANUAL_SWAP ) ,
15961600 LintId :: of( & temporary_assignment:: TEMPORARY_ASSIGNMENT ) ,
15971601 LintId :: of( & transmute:: CROSSPOINTER_TRANSMUTE ) ,
0 commit comments