Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebailey committed Jun 26, 2024
1 parent 57c29f9 commit 035f66c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/eslint-plugin/src/rules/expect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,9 @@ function walk(
if (!semver.satisfies(versionName, match[1].trim(), { loose: true })) {
continue;
}
} catch {}
} catch {
// Ignore any parsing errors.
}
}
}

Expand Down

0 comments on commit 035f66c

Please sign in to comment.