Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Oct 27, 2024
1 parent a2776ef commit 737c609
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const getValue = ({ value }: UnknownIteratorYieldResult) => value
// We use imperative code for performance purpose, which is why those ESLint
// rules are disabled.
/* eslint-disable fp/no-let, fp/no-mutation, no-param-reassign, max-depth,
no-plusplus, fp/no-loops, max-statements */
no-plusplus, fp/no-loops, max-statements, no-constant-condition */
const getResult = (
iteratorFuncs: readonly GetIteratorFunc[],
iterators: UnknownIterator[],
Expand Down Expand Up @@ -162,4 +162,4 @@ const getResult = (
return false
}
/* eslint-enable fp/no-let, fp/no-mutation, no-param-reassign, max-depth,
no-plusplus, fp/no-loops, max-statements */
no-plusplus, fp/no-loops, max-statements, no-constant-condition */

0 comments on commit 737c609

Please sign in to comment.