mirror of
https://github.com/mozilla/pdf.js.git
synced 2026-07-06 07:05:48 +02:00
This is a major version bump, but the changelog at https://github.com/sindresorhus/eslint-plugin-unicorn/releases/tag/v65.0.0 doesn't indicate any breaking changes that should impact us. However, there is one false positive, possibly introduced by patch https://github.com/sindresorhus/eslint-plugin-unicorn/pull/3028: ``` src/core/xfa/factory.js 104:54 error Prefer `.some(…)` over `.find(…)` unicorn/prefer-array-some ``` This is incorrect because on this line we're not dealing with an array but with a `FontFinder` instance instead (and that doesn't have a `.some()` method), so we ignore the rule for this line.