We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d475ded commit 850cffbCopy full SHA for 850cffb
packages/core/src/rules/oas3/no-invalid-tag-parents.ts
@@ -31,7 +31,7 @@ export const NoInvalidTagParents: Oas3Rule = () => {
31
message: `Circular reference detected in tag parent hierarchy for tag '${tag.name}'.`,
32
location: location.child('parent'),
33
});
34
- break;
+ return;
35
}
36
visited.add(currentParent);
37
currentParent = tags.find((t) => t.name === currentParent)?.parent;
0 commit comments