Skip to content

Commit 9e1e90a

Browse files
committed
Remove no-magic-numbers
1 parent 194f513 commit 9e1e90a

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

packages/base/src/utils/iterateEquals.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ export default function iterateEquals<T>(x: Iterable<T>, y: Iterable<T>): boolea
88
throw new Error('Must not pass same instance twice');
99
}
1010

11-
// eslint-disable-next-line no-magic-numbers
1211
for (let count = 0; count < MAX_ITERATION; count++) {
1312
const resultX = xIterator.next();
1413
const resultY = yIterator.next();

0 commit comments

Comments
 (0)