diff --git a/src/default.ts b/src/default.ts index 853f5a2..fb25d61 100644 --- a/src/default.ts +++ b/src/default.ts @@ -29,7 +29,6 @@ const getTimes = (length: number) => { if (time !== lastTime) { // eslint-disable-next-line fp/no-mutation lastTime = time - // eslint-disable-next-line fp/no-mutating-methods times.push(time) } } diff --git a/src/main.ts b/src/main.ts index acd108c..33636a0 100644 --- a/src/main.ts +++ b/src/main.ts @@ -42,7 +42,6 @@ const DEFAULT_MIN_RESOLUTION = 1 // sorted from lowest to highest number: // - This would ensure `0` are at the end // - Lower numbers are less likely to trigger the resolution modulo -// eslint-disable-next-line complexity const isTimeResolution = (resolution: number, times: readonly number[]) => { // eslint-disable-next-line fp/no-let let count = 0