File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -202,11 +202,11 @@ There are no internal references that MUST be `Reference Object`s.
202202Regexes of internal references that MUST be ` Reference Object ` s:
203203
204204```
205- /#\/channels\/, *\/servers/
205+ /#\/channels\/. *\/servers/
206206/#\/operations\/.*\/channel/
207207/#\/operations\/.*\/messages/
208208/#\/operations\/.*\/reply\/channel/
209- /#\/operations\/, *\/reply\/messages/
209+ /#\/operations\/. *\/reply\/messages/
210210/#\/components\/channels\/.*\/servers/
211211/#\/components\/operations\/.*\/channel/
212212/#\/components\/operations\/.*\/messages/
Original file line number Diff line number Diff line change @@ -48,11 +48,11 @@ export async function parse(
4848 excludedPathMatcher : ( path : string ) : any => {
4949 return (
5050 // prettier-ignore
51- ( / # \/ c h a n n e l s \/ , * \/ s e r v e r s / ) . test ( path ) ||
51+ ( / # \/ c h a n n e l s \/ . * \/ s e r v e r s / ) . test ( path ) ||
5252 ( / # \/ o p e r a t i o n s \/ .* \/ c h a n n e l / ) . test ( path ) ||
5353 ( / # \/ o p e r a t i o n s \/ .* \/ m e s s a g e s / ) . test ( path ) ||
5454 ( / # \/ o p e r a t i o n s \/ .* \/ r e p l y \/ c h a n n e l / ) . test ( path ) ||
55- ( / # \/ o p e r a t i o n s \/ , * \/ r e p l y \/ m e s s a g e s / ) . test ( path ) ||
55+ ( / # \/ o p e r a t i o n s \/ . * \/ r e p l y \/ m e s s a g e s / ) . test ( path ) ||
5656 ( / # \/ c o m p o n e n t s \/ c h a n n e l s \/ .* \/ s e r v e r s / ) . test ( path ) ||
5757 ( / # \/ c o m p o n e n t s \/ o p e r a t i o n s \/ .* \/ c h a n n e l / ) . test ( path ) ||
5858 ( / # \/ c o m p o n e n t s \/ o p e r a t i o n s \/ .* \/ m e s s a g e s / ) . test ( path ) ||
You can’t perform that action at this time.
0 commit comments