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 4d67620 commit 65f1878
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}
Expand Down
1 change: 0 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 65f1878

Please sign in to comment.