1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 05:13:29 +00:00

[PM-21934] Upgrade to eslint 9 (#14754)

Upgrades to Eslint v9. Since this is a major version there were breaking changes, but since we've previously migrated to flat configs in #12806 those were minimal.
This commit is contained in:
Oscar Hinton
2025-05-27 19:13:15 +02:00
committed by GitHub
parent 677a435cad
commit 5423ab3268
19 changed files with 1961 additions and 857 deletions

10
libs/eslint/fix-jsdom.ts Normal file
View File

@@ -0,0 +1,10 @@
import JSDOMEnvironment from "jest-environment-jsdom";
export default class FixJSDOMEnvironment extends JSDOMEnvironment {
constructor(...args: ConstructorParameters<typeof JSDOMEnvironment>) {
super(...args);
// FIXME https://github.com/jsdom/jsdom/issues/3363
this.global.structuredClone = structuredClone;
}
}