Explorar o código

Allow Missing Prop Docs (#3692)

* revision: allow missing prop docs

* fix: link

---------

Co-authored-by: Jonathan Kelley <jkelleyrtp@gmail.com>
Miles Murgaw hai 4 meses
pai
achega
4199d545fe
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      packages/core-macro/src/component.rs

+ 1 - 0
packages/core-macro/src/component.rs

@@ -47,6 +47,7 @@ impl ToTokens for ComponentBody {
                 let props_struct = self.props_struct();
                 quote! {
                     #[doc = #doc]
+                    #[allow(missing_docs)]
                     #props_struct
                 }
             }