tigerros 1 éve
szülő
commit
e217a957dc

+ 2 - 1
packages/router-macro/src/lib.rs

@@ -559,7 +559,8 @@ impl RouteEnum {
             #(#type_defs)*
 
             #[allow(non_camel_case_types)]
-            #[derive(Debug, PartialEq, Eq)]
+            #[allow(clippy::derive_partial_eq_without_eq)]
+            #[derive(Debug, PartialEq)]
             pub enum #match_error_name {
                 #(#error_variants),*
             }

+ 2 - 1
packages/router-macro/src/segment.rs

@@ -309,7 +309,8 @@ pub(crate) fn create_error_type(
 
     quote! {
         #[allow(non_camel_case_types)]
-        #[derive(Debug, PartialEq, Eq)]
+        #[allow(clippy::derive_partial_eq_without_eq)]
+        #[derive(Debug, PartialEq)]
         pub enum #error_name {
             ExtraSegments(String),
             #(#child_type_variant,)*