File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ export function compileOperationsToProto(
126126 // This catches invalid operations including circular fragment references (NoFragmentCyclesRule)
127127 // Filter out KnownDirectivesRule to allow unknown directives (e.g., @wg_openapi_operation)
128128 // since directives may be used by dev tools and don't affect proto generation
129- const validationRules = specifiedRules . filter ( rule => rule !== KnownDirectivesRule ) ;
129+ const validationRules = specifiedRules . filter ( ( rule ) => rule !== KnownDirectivesRule ) ;
130130 const validationErrors = validate ( schema , document , validationRules ) ;
131131 if ( validationErrors . length > 0 ) {
132132 const errorMessages = validationErrors . map ( ( error ) => error . message ) . join ( '\n' ) ;
You can’t perform that action at this time.
0 commit comments