Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
catosaurusrex2003 committed Nov 14, 2024
1 parent 41405da commit e61fc94
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion library/src/helpers/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,9 @@ export class SchemaHelpers {
}

if (visited.has(value as object)) {
throw new Error("too much recursion. Please check document for recursion.")
throw new Error(
'too much recursion. Please check document for recursion.',
);
}
visited.add(value as object);

Expand Down

0 comments on commit e61fc94

Please sign in to comment.