From 228246c0c4d67b439d9b16603cac281d58355c47 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 10:40:59 -0500
Subject: [PATCH 001/127] remove eslint-plugin-dev

---
 npm/eslint-plugin-dev/.eslintignore           |   3 -
 npm/eslint-plugin-dev/.eslintrc.json          |  10 -
 npm/eslint-plugin-dev/.npmignore              |   2 -
 npm/eslint-plugin-dev/CHANGELOG.md            |  74 ----
 npm/eslint-plugin-dev/LICENSE.md              |  24 --
 npm/eslint-plugin-dev/README.md               | 212 -----------
 .../arrow-body-multiline-braces.js            |  17 -
 .../lib/custom-rules/index.js                 |   8 -
 .../lib/custom-rules/no-only.js               |  53 ---
 .../lib/custom-rules/no-return-before.js      |  73 ----
 .../lib/custom-rules/skip-comment.js          |  84 -----
 npm/eslint-plugin-dev/lib/index.js            | 357 ------------------
 .../lib/scripts/lint-changed.js               |  37 --
 .../lib/scripts/lint-pre-commit.js            |  63 ----
 .../lib/scripts/lint-pre-push.js              |  43 ---
 .../lib/scripts/lint-staged.js                |  30 --
 .../lib/scripts/lint.spec.js                  | 163 --------
 npm/eslint-plugin-dev/lib/scripts/utils.js    | 112 ------
 npm/eslint-plugin-dev/package.json            |  57 ---
 npm/eslint-plugin-dev/test/.eslintrc          |   5 -
 .../test/arrow-body-multiline-braces.spec.js  |  55 ---
 .../test/fixtures/multiline.js                |   9 -
 .../test/fixtures/no-return-before-fail.js    |  10 -
 .../test/fixtures/no-return-before-pass.js    |  10 -
 .../test/fixtures/oneline.js                  |   5 -
 .../test/fixtures/skip-comment-config.js      |  10 -
 .../test/fixtures/skip-comment-fail.js        |  11 -
 .../test/fixtures/skip-comment-pass.js        |  25 --
 .../test/fixtures/with-only.js                |  11 -
 npm/eslint-plugin-dev/test/no-only.spec.js    |  53 ---
 .../test/no-return-before.spec.js             |  99 -----
 .../test/skip-comment.spec.js                 |  92 -----
 32 files changed, 1817 deletions(-)
 delete mode 100644 npm/eslint-plugin-dev/.eslintignore
 delete mode 100644 npm/eslint-plugin-dev/.eslintrc.json
 delete mode 100644 npm/eslint-plugin-dev/.npmignore
 delete mode 100644 npm/eslint-plugin-dev/CHANGELOG.md
 delete mode 100644 npm/eslint-plugin-dev/LICENSE.md
 delete mode 100644 npm/eslint-plugin-dev/README.md
 delete mode 100644 npm/eslint-plugin-dev/lib/custom-rules/arrow-body-multiline-braces.js
 delete mode 100644 npm/eslint-plugin-dev/lib/custom-rules/index.js
 delete mode 100644 npm/eslint-plugin-dev/lib/custom-rules/no-only.js
 delete mode 100644 npm/eslint-plugin-dev/lib/custom-rules/no-return-before.js
 delete mode 100644 npm/eslint-plugin-dev/lib/custom-rules/skip-comment.js
 delete mode 100644 npm/eslint-plugin-dev/lib/index.js
 delete mode 100755 npm/eslint-plugin-dev/lib/scripts/lint-changed.js
 delete mode 100755 npm/eslint-plugin-dev/lib/scripts/lint-pre-commit.js
 delete mode 100755 npm/eslint-plugin-dev/lib/scripts/lint-pre-push.js
 delete mode 100755 npm/eslint-plugin-dev/lib/scripts/lint-staged.js
 delete mode 100644 npm/eslint-plugin-dev/lib/scripts/lint.spec.js
 delete mode 100644 npm/eslint-plugin-dev/lib/scripts/utils.js
 delete mode 100644 npm/eslint-plugin-dev/package.json
 delete mode 100644 npm/eslint-plugin-dev/test/.eslintrc
 delete mode 100644 npm/eslint-plugin-dev/test/arrow-body-multiline-braces.spec.js
 delete mode 100644 npm/eslint-plugin-dev/test/fixtures/multiline.js
 delete mode 100644 npm/eslint-plugin-dev/test/fixtures/no-return-before-fail.js
 delete mode 100644 npm/eslint-plugin-dev/test/fixtures/no-return-before-pass.js
 delete mode 100644 npm/eslint-plugin-dev/test/fixtures/oneline.js
 delete mode 100644 npm/eslint-plugin-dev/test/fixtures/skip-comment-config.js
 delete mode 100644 npm/eslint-plugin-dev/test/fixtures/skip-comment-fail.js
 delete mode 100644 npm/eslint-plugin-dev/test/fixtures/skip-comment-pass.js
 delete mode 100644 npm/eslint-plugin-dev/test/fixtures/with-only.js
 delete mode 100644 npm/eslint-plugin-dev/test/no-only.spec.js
 delete mode 100644 npm/eslint-plugin-dev/test/no-return-before.spec.js
 delete mode 100644 npm/eslint-plugin-dev/test/skip-comment.spec.js

diff --git a/npm/eslint-plugin-dev/.eslintignore b/npm/eslint-plugin-dev/.eslintignore
deleted file mode 100644
index 6fe4231de92b..000000000000
--- a/npm/eslint-plugin-dev/.eslintignore
+++ /dev/null
@@ -1,3 +0,0 @@
-!.*
-**/package-lock.json
-test/fixtures
diff --git a/npm/eslint-plugin-dev/.eslintrc.json b/npm/eslint-plugin-dev/.eslintrc.json
deleted file mode 100644
index b7e94b45ffe6..000000000000
--- a/npm/eslint-plugin-dev/.eslintrc.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-  "plugins": [
-    "@cypress/dev",
-    "promise"
-  ],
-  "extends": [
-    "plugin:promise/recommended",
-    "plugin:@cypress/dev/general"
-  ]
-}
diff --git a/npm/eslint-plugin-dev/.npmignore b/npm/eslint-plugin-dev/.npmignore
deleted file mode 100644
index 2e5519c0b8ec..000000000000
--- a/npm/eslint-plugin-dev/.npmignore
+++ /dev/null
@@ -1,2 +0,0 @@
-/*
-!lib/
diff --git a/npm/eslint-plugin-dev/CHANGELOG.md b/npm/eslint-plugin-dev/CHANGELOG.md
deleted file mode 100644
index 2b0105718a0f..000000000000
--- a/npm/eslint-plugin-dev/CHANGELOG.md
+++ /dev/null
@@ -1,74 +0,0 @@
-# [@cypress/eslint-plugin-dev-v6.0.0](https://github.com/cypress-io/cypress/compare/@cypress/eslint-plugin-dev-v5.3.3...@cypress/eslint-plugin-dev-v6.0.0) (2024-05-06)
-
-
-### breaking
-
-* the supported eslint version is 8 for @cypress/eslint-plugin-dev. ([3b799a1](https://github.com/cypress-io/cypress/commit/3b799a158d7af419637d524e811561cd25143c3f))
-
-
-### BREAKING CHANGES
-
-* The supported eslint version is 8.  @see f14a11aecfbc1e3854daae02b69fb40b4ec801b7 for breaking changes to the plugin.
-
-# [@cypress/eslint-plugin-dev-v5.3.3](https://github.com/cypress-io/cypress/compare/@cypress/eslint-plugin-dev-v5.3.2...@cypress/eslint-plugin-dev-v5.3.3) (2024-01-12)
-
-
-### Bug Fixes
-
-* allow for versions greater than 4 for eslint-plugin-mocha to prevent force installing dependencies when eslint-plugin-mocha is bumbed in comsumer packages ([#27944](https://github.com/cypress-io/cypress/issues/27944)) ([bf05978](https://github.com/cypress-io/cypress/commit/bf0597847e71f34303364929f9c34cdd6c0e7ad8))
-
-# [@cypress/eslint-plugin-dev-v5.3.2](https://github.com/cypress-io/cypress/compare/@cypress/eslint-plugin-dev-v5.3.1...@cypress/eslint-plugin-dev-v5.3.2) (2022-08-15)
-
-
-### Bug Fixes
-
-* clear session state when changing specs in open mode ([#23146](https://github.com/cypress-io/cypress/issues/23146)) ([f1122fc](https://github.com/cypress-io/cypress/commit/f1122fcf62c14abddc0ae96116572402c1be2372))
-
-# [@cypress/eslint-plugin-dev-v5.3.1](https://github.com/cypress-io/cypress/compare/@cypress/eslint-plugin-dev-v5.3.0...@cypress/eslint-plugin-dev-v5.3.1) (2022-08-11)
-
-
-### Bug Fixes
-
-* retry on EMFILE always, lint sync FS calls ([#22175](https://github.com/cypress-io/cypress/issues/22175)) ([d01932b](https://github.com/cypress-io/cypress/commit/d01932bf751a6edf758451d8d19a74fe07e799ea))
-
-# [@cypress/eslint-plugin-dev-v5.3.1](https://github.com/cypress-io/cypress/compare/@cypress/eslint-plugin-dev-v5.3.0...@cypress/eslint-plugin-dev-v5.3.1) (2022-08-10)
-
-
-### Bug Fixes
-
-* retry on EMFILE always, lint sync FS calls ([#22175](https://github.com/cypress-io/cypress/issues/22175)) ([d01932b](https://github.com/cypress-io/cypress/commit/d01932bf751a6edf758451d8d19a74fe07e799ea))
-
-# [@cypress/eslint-plugin-dev-v5.3.1](https://github.com/cypress-io/cypress/compare/@cypress/eslint-plugin-dev-v5.3.0...@cypress/eslint-plugin-dev-v5.3.1) (2022-06-29)
-
-
-### Bug Fixes
-
-* retry on EMFILE always, lint sync FS calls ([#22175](https://github.com/cypress-io/cypress/issues/22175)) ([d01932b](https://github.com/cypress-io/cypress/commit/d01932bf751a6edf758451d8d19a74fe07e799ea))
-
-# [@cypress/eslint-plugin-dev-v5.3.0](https://github.com/cypress-io/cypress/compare/@cypress/eslint-plugin-dev-v5.2.0...@cypress/eslint-plugin-dev-v5.3.0) (2022-06-01)
-
-
-### Features
-
-* Turn "no-useless-constructor" off and enable "ignoreRestSiblings" ([#17875](https://github.com/cypress-io/cypress/issues/17875)) ([94541d4](https://github.com/cypress-io/cypress/commit/94541d4f18591e8fa4b8702c39e92b0a7238aa5d))
-
-# [@cypress/eslint-plugin-dev-v5.2.0](https://github.com/cypress-io/cypress/compare/@cypress/eslint-plugin-dev-v5.1.0...@cypress/eslint-plugin-dev-v5.2.0) (2021-12-16)
-
-
-### Features
-
-* use hoisted yarn install in binary build ([#17285](https://github.com/cypress-io/cypress/issues/17285)) ([e4f5b10](https://github.com/cypress-io/cypress/commit/e4f5b106d49d6ac0857c5fdac886f83b99558c88))
-
-# [@cypress/eslint-plugin-dev-v5.1.0](https://github.com/cypress-io/cypress/compare/@cypress/eslint-plugin-dev-v5.0.2...@cypress/eslint-plugin-dev-v5.1.0) (2021-02-16)
-
-
-### Features
-
-* component testing ([#14479](https://github.com/cypress-io/cypress/issues/14479)) ([af26fbe](https://github.com/cypress-io/cypress/commit/af26fbebe6bc609132013a0493a116cc78bb1bd4))
-
-# [@cypress/eslint-plugin-dev-v5.0.2](https://github.com/cypress-io/cypress/compare/@cypress/eslint-plugin-dev-v5.0.1...@cypress/eslint-plugin-dev-v5.0.2) (2020-10-29)
-
-
-### Bug Fixes
-
-* update bugs link in package.json ([#9015](https://github.com/cypress-io/cypress/issues/9015)) ([34186cb](https://github.com/cypress-io/cypress/commit/34186cb8b76c230a2506cabb0358d44c3205e0c4))
diff --git a/npm/eslint-plugin-dev/LICENSE.md b/npm/eslint-plugin-dev/LICENSE.md
deleted file mode 100644
index f8b59f26ae10..000000000000
--- a/npm/eslint-plugin-dev/LICENSE.md
+++ /dev/null
@@ -1,24 +0,0 @@
-## MIT License
-
-Copyright (c) 2017 Cypress.io https://cypress.io
-
-Permission is hereby granted, free of charge, to any person
-obtaining a copy of this software and associated documentation
-files (the "Software"), to deal in the Software without
-restriction, including without limitation the rights to use,
-copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following
-conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
-OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
-HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-OTHER DEALINGS IN THE SOFTWARE.
diff --git a/npm/eslint-plugin-dev/README.md b/npm/eslint-plugin-dev/README.md
deleted file mode 100644
index 4656cbff22b6..000000000000
--- a/npm/eslint-plugin-dev/README.md
+++ /dev/null
@@ -1,212 +0,0 @@
-
-<div>
-    <!-- <img src="docs/readme-logo.png"> -->
-    <h1>[Internal] Cypress Developer ESLint Plugin</h1>
-    <a href="https://www.npmjs.com/package/@cypress/eslint-plugin-dev"><img src="https://img.shields.io/npm/v/@cypress/eslint-plugin-dev.svg?style=flat"></a>
-    <a href="https://circleci.com/gh/cypress-io/eslint-plugin-dev/tree/develop"><img src="https://img.shields.io/circleci/build/gh/cypress-io/eslint-plugin-dev.svg"></a>
-
-<p>Common ESLint rules shared by Cypress packages.</p>
-
-</div>
-
-> ⚠️ This package for _internal development_ of Cypress. Here's the [**Official Cypress ESLint Plugin**](https://github.com/cypress-io/eslint-plugin-cypress) meant for users of Cypress.
-
-
-## Installation
-
-```
-npm install --save-dev @cypress/eslint-plugin-dev
-```
-
-## Usage
-
-> ⚠️ Currently does **not** support ESLint version 9
-
-For Eslint 8, use version 6.x.x
-
-For Eslint 7 and below, use version 5.x.x
-
-1) install the following `devDependencies`:
-```sh
-@cypress/eslint-plugin-dev
-eslint-plugin-json-format
-@typescript-eslint/parser
-@typescript-eslint/eslint-plugin
-eslint-plugin-mocha
-eslint-plugin-import
-
-# if you have react/jsx files
-eslint-plugin-react
-@babel/eslint-parser
-```
-
-2) add the following to your root level `.eslintrc.json`:
-```json
-{
-  "plugins": [
-    "@cypress/dev"
-  ],
-  "extends": [
-    "plugin:@cypress/dev/general"
-  ]
-}
-```
-
-> Note: also add `"plugin:@cypress/dev/react"`, if you are using `React`
-
-> Note: if you have a `test/` directory, you should create a `.eslintrc.json` file inside of it, and add:
-```json
-{
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ]
-}
-```
-
-3) add the following to your `.eslintignore`:
-```sh
-# don't ignore hidden files, useful for formatting json config files
-!.*
-```
-
-4) (optional) Install and configure your text editor's ESLint Plugin Extension to lint and auto-fix files using ESLint, [detailed below](#editors)
-
-5) (optional) Install [`husky`](https://github.com/typicode/husky) and enable the lint `pre-commit` hook:
-
-`package.json`:
-```json
-  "husky": {
-    "hooks": {
-      "pre-commit": "lint-pre-commit"
-    }
-  },
-```
-> Note: the `lint-pre-commit` hook will automatically lint your staged files, and only `--fix` and `git add` them if there are no unstaged changes existing in that file (this protects partially staged files from being added in the hook).  
-To auto-fix all staged & unstaged files, run `./node_modules/.bin/lint-changed --fix`
-
-## Presets
-
-### general
-
-_Should usually be used at the root of the package._
-- The majority of the rules. 
-- auto-fixes `json` files and sorts your `package.json` via [`eslint-plugin-json-format`](https://github.com/bkucera/eslint-plugin-json-format)
-
-
-**requires you to install the following `devDependencies`**:
-```sh
-eslint-plugin-import
-eslint-plugin-json-format
-@typescript-eslint/parser
-@typescript-eslint/eslint-plugin
-```
-
-### tests
-
-Test-specific configuration and rules. Should be used within the `test/` directory.
-
-**requires you to install the following `devDependencies`**:
-```sh
-eslint-plugin-mocha
-```
-
-### react
-
-React and JSX-specific configuration and rules.
-
-**requires you to install the following `devDependencies`**:
-```sh
-@babel/eslint-parser
-eslint-plugin-react
-```
-
-## Configuration Examples
-
-Change some linting rules:
-```js
-// .eslintrc.json
-{
-  "extends": [
-    "plugin:@cypress/dev/general"
-  ],
-  "rules": {
-    "comma-dangle": "off",
-    "no-debugger": "warn"
-  }
-}
-```
-
-Stop your `package.json` from being formatted:
-```json
-{
-  "settings": {
-    "json/sort-package-json": false
-  }
-}
-```
-
-### Custom Rules:
-name | description | options | example
--|-|-|-
-`@cypress/dev/arrow-body-multiline-braces` | Enforces braces in arrow functions ONLY IN multiline function definitions | [`[always|never] always set this to 'always'`] | `'@cypress/dev/arrow-body-multiline-braces': ['error', 'always']`
-`@cypress/dev/skip-comment` | Enforces a comment (`// NOTE:`) explaining a `.skip` added to `it`, `describe`, or `context` test blocks | { commentTokens: `[array] tokens that indicate .skip explanation (default: ['NOTE:', 'TODO:', 'FIXME:']`)} | `'@cypress/dev/skip-comment': ['error', { commentTokens: ['TODO:'] }]`
-`@cypress/dev/no-return-before` | Disallows `return` statements before certain configurable tokens | { tokens: `[array] tokens that cannot be preceded by 'return' (default: ['it', 'describe', 'context', 'expect']`)} | `'@cypress/dev/no-return-before': ['error', { tokens: ['myfn'] }]`
-
-## <a name="editors"></a>Editors
-
-### VSCode
-
-Use plugin [ESLint by Dirk Baeumer](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) to lint and auto fix JS files using ESLint.  
-After installing, add the following to your User or Workspace (`.vscode/settings.json`) settings:
-```json
-{
-  "eslint.validate": [
-    { 
-      "language": "javascript",
-      "autoFix": true
-    },
-    {
-      "language": "javascriptreact",
-      "autoFix": true
-    },
-    {
-      "language": "typescript",
-      "autoFix": true
-    },
-    {
-      "language": "typescriptreact",
-      "autoFix": true
-    },
-    {
-      "language": "json",
-      "autoFix": true
-    }
-  ],
-}
-```
-
-### Atom
-
-Install package [linter-eslint](https://atom.io/packages/linter-eslint)
-(and its dependencies) to enable linting. Go into the settings for this package
-and enable "Fix on save" option to auto-fix white space issues and other things.
-
-### Sublime Text
-
-Install [ESLint-Formatter](https://packagecontrol.io/packages/ESLint-Formatter),
-then set the following settings:
-
-```json
-{
-  "format_on_save": true,
-  "debug": true
-}
-```
-
-## License
-
-This project is licensed under the terms of the [MIT license](/LICENSE.md).
-
-## Changelog
-
-[Changelog](./CHANGELOG.md)
diff --git a/npm/eslint-plugin-dev/lib/custom-rules/arrow-body-multiline-braces.js b/npm/eslint-plugin-dev/lib/custom-rules/arrow-body-multiline-braces.js
deleted file mode 100644
index c196e3a9bd0d..000000000000
--- a/npm/eslint-plugin-dev/lib/custom-rules/arrow-body-multiline-braces.js
+++ /dev/null
@@ -1,17 +0,0 @@
-const ruleComposer = require('eslint-rule-composer')
-const eslint = require('eslint')
-const arrowBodyStyle = new eslint.Linter().getRules().get('arrow-body-style')
-
-module.exports = ruleComposer.filterReports(
-  arrowBodyStyle,
-  (problem, metadata) => {
-    const problemIndex = metadata.sourceCode.getIndexFromLoc(problem.loc.start)
-    const reportedToken = metadata.sourceCode.getTokenByRangeStart(problemIndex, { includeComments: true })
-
-    if (problem.node.loc.start.line === problem.node.loc.end.line) {
-      return
-    }
-
-    return !(reportedToken && reportedToken.type === 'Line' && /^-{2,}$/u.test(reportedToken.value))
-  },
-)
diff --git a/npm/eslint-plugin-dev/lib/custom-rules/index.js b/npm/eslint-plugin-dev/lib/custom-rules/index.js
deleted file mode 100644
index 8dbc761bc096..000000000000
--- a/npm/eslint-plugin-dev/lib/custom-rules/index.js
+++ /dev/null
@@ -1,8 +0,0 @@
-const fs = require('fs')
-const path = require('path')
-
-module.exports =
-  // eslint-disable-next-line no-restricted-syntax
-  Object.assign({}, ...fs.readdirSync(__dirname)
-  .filter((filename) => filename.endsWith('.js') && filename !== 'index.js')
-  .map((filename) => ({ [filename.replace(/\.js$/u, '')]: require(path.resolve(__dirname, filename)) })))
diff --git a/npm/eslint-plugin-dev/lib/custom-rules/no-only.js b/npm/eslint-plugin-dev/lib/custom-rules/no-only.js
deleted file mode 100644
index f4fba53f4280..000000000000
--- a/npm/eslint-plugin-dev/lib/custom-rules/no-only.js
+++ /dev/null
@@ -1,53 +0,0 @@
-// @see https://github.com/eslint/eslint/blob/v8.57.0/lib/shared/ast-utils.js#L12
-// This value is not exported anywhere, but hasn't changed in almost a decade.
-// we can directly reference the pattern here
-const lineBreakPattern = /\r\n|[\r\n\u2028\u2029]/u
-
-module.exports = {
-  meta: {
-    type: 'problem',
-    docs: {
-      description: 'stop .only\'s in spec files',
-      category: 'Spec Issues',
-    },
-    messages: {
-      noOnly: 'Found only: `{{callee}}`.',
-    },
-
-    // uncomment to enable autoFix
-    // fixable: 'code',
-  },
-
-  create (context) {
-    const sourceCode = context.getSourceCode()
-
-    function getPropertyText (node) {
-      const lines = sourceCode.getText(node).split(lineBreakPattern)
-
-      return lines[0]
-    }
-
-    return {
-      'CallExpression:exit' (node) {
-        const callee = node.callee
-
-        if (node.type === 'CallExpression' && callee.type === 'MemberExpression' && callee.property.name === 'only') {
-          if (['it', 'describe', 'context'].includes(callee.object.name)) {
-            context.report({
-              node: callee.property,
-              loc: callee.property.loc.start,
-              messageId: 'noOnly',
-              data: {
-                callee: getPropertyText(callee.parent),
-              },
-              // uncomment to enable autoFix
-              // fix(fixer) {
-              //   return fixer.replaceTextRange([callee.property.start - 1, callee.property.end], '')
-              // }
-            })
-          }
-        }
-      },
-    }
-  },
-}
diff --git a/npm/eslint-plugin-dev/lib/custom-rules/no-return-before.js b/npm/eslint-plugin-dev/lib/custom-rules/no-return-before.js
deleted file mode 100644
index 30b68f329311..000000000000
--- a/npm/eslint-plugin-dev/lib/custom-rules/no-return-before.js
+++ /dev/null
@@ -1,73 +0,0 @@
-const defaultTokens = ['it', 'describe', 'context', 'expect']
-// const debug = require('debug')('@cypress/dev')
-
-module.exports = {
-  meta: {
-    type: 'problem',
-    docs: {
-      description: 'Enforce no return before certain token names',
-      category: 'Misc',
-    },
-    messages: {
-      errorMessage: `\
-Found a 'return' after '{{token}}'\
-`,
-    },
-
-    schema: [
-      {
-        type: 'object',
-        properties: {
-          tokens: {
-            type: 'array',
-            default: defaultTokens,
-          },
-        },
-        additionalProperties: false,
-      },
-    ],
-    // uncomment to enable autoFix
-    fixable: 'code',
-
-  },
-
-  create (context) {
-    let tokens = defaultTokens
-
-    if (context.options.length) {
-      tokens = typeof context.options[0].tokens === 'object' ? context.options[0].tokens : tokens
-    }
-
-    return {
-      'CallExpression:exit' (node) {
-        const callee = node.callee
-
-        if (
-          (callee.type === 'Identifier')
-          && tokens.includes(callee.name)
-        ) {
-          const t = context.getSourceCode().getTokenBefore(node)
-
-          // debug(t)
-
-          if (!(t && t.type === 'Keyword' && t.value === 'return')) return
-
-          const returnNode = t
-
-          context.report({
-            node: callee,
-            loc: callee.loc.start,
-            messageId: 'errorMessage',
-            data: {
-              token: callee.name,
-            },
-            // uncomment to enable autoFix
-            fix (fixer) {
-              return fixer.replaceTextRange([returnNode.range[0], returnNode.range[1] + 1], '')
-            },
-          })
-        }
-      },
-    }
-  },
-}
diff --git a/npm/eslint-plugin-dev/lib/custom-rules/skip-comment.js b/npm/eslint-plugin-dev/lib/custom-rules/skip-comment.js
deleted file mode 100644
index cf3aaf2ff69f..000000000000
--- a/npm/eslint-plugin-dev/lib/custom-rules/skip-comment.js
+++ /dev/null
@@ -1,84 +0,0 @@
-const defaultCommentTokens = ['NOTE:', 'TODO:', 'FIXME:']
-
-module.exports = {
-  meta: {
-    type: 'problem',
-    docs: {
-      description: 'stop .skip\'s in spec files',
-      category: 'Spec Issues',
-    },
-    messages: {
-      noOnly: `\
-Found a {{test-scope}}.skip(⋯) without an explanation.
-Add a comment above the '{{test-scope}}' starting with one of:
-{{commentTokens}}
-
-e.g.
-// {{exampleCommentToken}} <reason test was skipped>
-{{test-scope}}.skip(⋯)
-
-`,
-    },
-
-    schema: [
-      {
-        type: 'object',
-        properties: {
-          commentTokens: {
-            type: 'array',
-            default: defaultCommentTokens,
-          },
-        },
-        additionalProperties: false,
-      },
-    ],
-    // uncomment to enable autoFix
-    // fixable: 'code',
-
-  },
-
-  create (context) {
-    let commentTokens = defaultCommentTokens
-
-    if (context.options.length) {
-      commentTokens = typeof context.options[0].commentTokens === 'object' ? context.options[0].commentTokens : commentTokens
-    }
-
-    const sourceCode = context.getSourceCode()
-
-    return {
-      'CallExpression:exit' (node) {
-        const callee = node.callee
-
-        const commentBefore = sourceCode.getCommentsBefore(node)
-
-        const hasExplain = commentBefore && commentBefore.map(
-          (v) => commentTokens.concat(commentTokens.map((v) => `# ${v}`)).map((commentToken) => v.value.trim().startsWith(commentToken)).filter(Boolean)[0],
-        ).filter(Boolean)[0]
-
-        if (hasExplain) {
-          return
-        }
-
-        if (node.type === 'CallExpression' && callee.type === 'MemberExpression' && callee.property.name === 'skip') {
-          if (['it', 'describe', 'context'].includes(callee.object.name)) {
-            context.report({
-              node: callee.property,
-              loc: callee.property.loc.start,
-              messageId: 'noOnly',
-              data: {
-                'test-scope': callee.object.name,
-                commentTokens: commentTokens.join('  '),
-                exampleCommentToken: commentTokens[0],
-              },
-              // uncomment to enable autoFix
-              // fix(fixer) {
-              //   return fixer.replaceTextRange([callee.property.start - 1, callee.property.end], '')
-              // }
-            })
-          }
-        }
-      },
-    }
-  },
-}
diff --git a/npm/eslint-plugin-dev/lib/index.js b/npm/eslint-plugin-dev/lib/index.js
deleted file mode 100644
index eab453c761c6..000000000000
--- a/npm/eslint-plugin-dev/lib/index.js
+++ /dev/null
@@ -1,357 +0,0 @@
-const customRules = require('./custom-rules')
-const baseRules = {
-  '@cypress/dev/arrow-body-multiline-braces': [
-    'error',
-    'always',
-  ],
-  'array-bracket-newline': [
-    'error',
-    'consistent',
-  ],
-  'array-bracket-spacing': [
-    'error',
-    'never',
-  ],
-  'arrow-parens': [
-    'error',
-    'always',
-  ],
-  'arrow-spacing': 'error',
-  'block-spacing': 'error',
-  'brace-style': [
-    'error',
-    '1tbs',
-    {
-      'allowSingleLine': false,
-    },
-  ],
-  'function-paren-newline': [
-    'error',
-    'consistent',
-  ],
-  'comma-dangle': [
-    'error',
-    'always-multiline',
-  ],
-  'comma-spacing': 'error',
-  'curly': [
-    'error',
-    'multi-line',
-    'consistent',
-  ],
-  'constructor-super': 'error',
-  'default-case': 'error',
-  'eol-last': 'error',
-  'eqeqeq': [
-    'error',
-    'allow-null',
-  ],
-  'indent': [
-    'error',
-    2,
-    {
-      // TODO: fix this, we shouldn't need to ignore TemplateLiterals
-      'ignoredNodes': ['TemplateLiteral'],
-      'SwitchCase': 1,
-      'MemberExpression': 0,
-    },
-  ],
-  'key-spacing': 'error',
-  'keyword-spacing': 'error',
-  'no-buffer-constructor': 'error',
-  'no-case-declarations': 'error',
-  'no-class-assign': 'error',
-  'no-cond-assign': 'error',
-  'no-console': 'error',
-  'no-const-assign': 'error',
-  'no-constant-condition': 'error',
-  'no-control-regex': 'error',
-  'no-debugger': 'error',
-  'no-delete-var': 'error',
-  'no-dupe-class-members': 'error',
-  'no-dupe-keys': 'error',
-  'no-dupe-args': 'error',
-  'no-duplicate-case': 'error',
-  'no-duplicate-imports': 'error',
-  'no-else-return': [
-    'error',
-    {
-      'allowElseIf': false,
-    },
-  ],
-  'no-empty': 'error',
-  'no-empty-character-class': 'error',
-  'no-empty-pattern': 'error',
-  'no-ex-assign': 'error',
-  'no-extra-boolean-cast': 'error',
-  'no-extra-semi': 'error',
-  'no-fallthrough': 'error',
-  'no-func-assign': 'error',
-  'no-inner-declarations': 'error',
-  'no-invalid-regexp': 'error',
-  'no-irregular-whitespace': 'error',
-  'no-mixed-spaces-and-tabs': 'error',
-  'no-multiple-empty-lines': [
-    'error',
-    {
-      'max': 1,
-      'maxEOF': 0,
-      'maxBOF': 0,
-    },
-  ],
-  'no-multi-spaces': 'error',
-  'no-negated-in-lhs': 'error',
-  'no-new-symbol': 'error',
-  'no-obj-calls': 'error',
-  'no-octal': 'error',
-  'no-redeclare': 'error',
-  'no-regex-spaces': 'error',
-  'no-self-assign': 'error',
-  'no-spaced-func': 'error',
-  'no-sparse-arrays': 'error',
-  'no-this-before-super': 'error',
-  'no-trailing-spaces': 'error',
-  'no-undef': 'error',
-  'no-unexpected-multiline': 'error',
-  'no-unneeded-ternary': 'error',
-  'no-unreachable': 'error',
-  'no-unused-labels': 'error',
-  'no-unused-vars': ['error', { args: 'none', ignoreRestSiblings: true }],
-  'no-useless-concat': 'error',
-  'no-useless-constructor': 'error',
-  'no-var': 'error',
-  'no-whitespace-before-property': 'error',
-  'object-curly-spacing': [
-    'error',
-    'always',
-  ],
-  'object-shorthand': 'error',
-  'one-var': [
-    'error',
-    'never',
-  ],
-  'padded-blocks': ['error', 'never'],
-  'padding-line-between-statements': [
-    'error',
-    {
-      'blankLine': 'always',
-      'prev': '*',
-      'next': 'return',
-    },
-    {
-      'blankLine': 'always',
-      'prev': [
-        'const',
-        'let',
-        'var',
-        'if',
-        'while',
-        'export',
-        'cjs-export',
-        'import',
-        'cjs-import',
-        'multiline-expression',
-      ],
-      'next': '*',
-    },
-    {
-      'blankLine': 'any',
-      'prev': [
-        'const',
-        'let',
-        'var',
-        'import',
-        'cjs-import',
-      ],
-      'next': [
-        'const',
-        'let',
-        'var',
-        'import',
-        'cjs-import',
-      ],
-    },
-  ],
-  'prefer-rest-params': 'error',
-  'prefer-spread': 'error',
-  'prefer-template': 'error',
-  'quotes': [
-    'error',
-    'single',
-    {
-      'allowTemplateLiterals': true,
-    },
-  ],
-  'semi': [
-    'error',
-    'never',
-  ],
-  'semi-spacing': 'error',
-  'space-before-blocks': 'error',
-  'space-before-function-paren': 'error',
-  'space-in-parens': [
-    'error',
-    'never',
-  ],
-  'space-infix-ops': 'error',
-  'space-unary-ops': 'error',
-  // TODO: change this back to 'error'
-  'template-curly-spacing': 'off',
-  'use-isnan': 'error',
-  'valid-typeof': 'error',
-}
-
-// '@cypress/dev/no-only': 'error',
-
-module.exports = {
-  configs: {
-    general: {
-      parserOptions: {
-        ecmaVersion: 2018,
-        sourceType: 'module',
-      },
-      plugins: [
-        'json-format',
-      ],
-      settings: {
-        json: {
-          'sort-package-json': 'pro',
-        },
-        react: {
-          version: 'detect',
-        },
-      },
-      env: {
-        node: true,
-        es6: true,
-      },
-      rules: {
-        ...baseRules,
-      },
-      overrides: [
-        {
-          files: [
-            '*.jsx',
-            '*.tsx',
-          ],
-          rules: {
-            '@cypress/dev/arrow-body-multiline-braces': 'off',
-          },
-        },
-        {
-          files: [
-            '*.ts',
-            '*.tsx',
-            '*.vue',
-          ],
-          parser: '@typescript-eslint/parser',
-          plugins: [
-            '@typescript-eslint',
-            'import',
-          ],
-          rules: {
-            'no-undef': 'off',
-            'no-unused-vars': 'off',
-            'indent': 'off',
-            'no-useless-constructor': 'off',
-            'no-duplicate-imports': 'off',
-            'import/no-duplicates': 'error',
-            '@typescript-eslint/no-unused-vars': [
-              'error',
-              {
-                'args': 'none',
-                'ignoreRestSiblings': true,
-                'argsIgnorePattern': '^_',
-              },
-            ],
-            '@typescript-eslint/type-annotation-spacing': 'error',
-            '@typescript-eslint/no-useless-constructor': [
-              'error',
-            ],
-            '@typescript-eslint/member-delimiter-style': [
-              'error',
-              {
-                'multiline': {
-                  'delimiter': 'none',
-                },
-                'singleline': {
-                  'delimiter': 'comma',
-                },
-              },
-            ],
-            '@typescript-eslint/indent': [
-              'error',
-              2,
-              {
-                'ignoredNodes': ['TemplateLiteral', 'TSTypeParameterInstantiation'],
-                'SwitchCase': 1,
-                'MemberExpression': 0,
-              },
-            ],
-          },
-        },
-      ],
-    },
-
-    tests: {
-      env: {
-        mocha: true,
-      },
-      globals: {
-        expect: true,
-      },
-      plugins: ['mocha'],
-      rules: {
-        'mocha/handle-done-callback': 'error',
-        'mocha/no-exclusive-tests': 'error',
-        'mocha/no-global-tests': 'error',
-        '@cypress/dev/skip-comment': 'error',
-      },
-      overrides: [{
-        files: '*.spec.tsx',
-        parser: '@typescript-eslint/parser',
-        plugins: [
-          '@typescript-eslint',
-          'react',
-        ],
-        rules: {
-          'no-unused-vars': 'off', // avoid interface imports to be warned against
-        },
-      }],
-    },
-    react: {
-      env: {
-        browser: true,
-      },
-      parser: '@babel/eslint-parser',
-      parserOptions: {
-        ecmaVersion: 2018,
-        sourceType: 'module',
-        requireConfigFile: false,
-        ecmaFeatures: {
-          jsx: true,
-          legacyDecorators: true,
-        },
-      },
-      plugins: ['react'],
-      rules: {
-        'react/jsx-curly-spacing': 'error',
-        'react/jsx-equals-spacing': 'error',
-        'react/jsx-no-duplicate-props': 'error',
-        'react/jsx-no-undef': 'error',
-        'react/jsx-pascal-case': 'error',
-        'react/jsx-uses-react': 'error',
-        'react/jsx-uses-vars': 'error',
-        'react/jsx-wrap-multilines': 'error',
-        'react/no-unknown-property': 'error',
-        'react/prefer-es6-class': 'error',
-        'react/react-in-jsx-scope': 'error',
-        'react/require-render-return': 'error',
-        'react/jsx-filename-extension': 'error',
-      },
-    },
-  },
-  rules: {
-    ...customRules,
-  },
-}
diff --git a/npm/eslint-plugin-dev/lib/scripts/lint-changed.js b/npm/eslint-plugin-dev/lib/scripts/lint-changed.js
deleted file mode 100755
index 990468b804fe..000000000000
--- a/npm/eslint-plugin-dev/lib/scripts/lint-changed.js
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/usr/bin/env node
-
-const sh = require('shelljs')
-const utils = require('./utils')
-const _ = require('lodash')
-const chalk = require('chalk')
-
-const start = () => {
-  const fix = process.argv.slice(2).includes('--fix')
-
-  return utils.lintFilesByName({
-    // list only modified files
-    getFilenames: () => {
-      return _.union(
-        sh.exec(`git diff --name-only --diff-filter=M`).split('\n'),
-        sh.exec(`git diff --name-only --diff-filter=MA --staged`).split('\n'),
-      )
-    },
-    fix,
-  })
-  .then(({ failed, filenames }) => {
-    if (failed) {
-      process.exit(failed)
-    }
-
-    // eslint-disable-next-line no-console
-    console.log(chalk.bold(`${chalk.green(filenames.length)} files linted successfully`))
-
-    return
-  })
-}
-
-if (!module.parent) {
-  start()
-}
-
-module.exports = { start }
diff --git a/npm/eslint-plugin-dev/lib/scripts/lint-pre-commit.js b/npm/eslint-plugin-dev/lib/scripts/lint-pre-commit.js
deleted file mode 100755
index 324ae1cbdf0f..000000000000
--- a/npm/eslint-plugin-dev/lib/scripts/lint-pre-commit.js
+++ /dev/null
@@ -1,63 +0,0 @@
-#!/usr/bin/env node
-
-const _ = require('lodash')
-const utils = require('./utils')
-const sh = require('shelljs')
-const chalk = require('chalk')
-
-const start = () => {
-  const filesStaged = sh.exec(`git diff --name-only --diff-filter=MA --staged`).split('\n').filter(Boolean)
-  const filesUnstaged = sh.exec(`git diff --name-only --diff-filter=M`).split('\n').filter(Boolean)
-  const filesPartiallyStaged = _.intersection(filesStaged, filesUnstaged)
-  const filesFullyStaged = _.difference(filesStaged, filesPartiallyStaged)
-
-  let fail = false
-  let lintedFilesCount = 0
-
-  return utils.lintFilesByName({
-    getFilenames: () => filesFullyStaged,
-    fix: true,
-  })
-  .then(({ failed, filenames }) => {
-    sh.exec(`git add ${sh.ShellString(filenames.join(' '))}`)
-
-    if (failed) {
-      fail = true
-    }
-
-    lintedFilesCount += filenames.length
-
-    return
-  })
-  .then(() => {
-    return utils.lintFilesByText({
-      getFilenames: () => filesPartiallyStaged,
-      getFileText: (f) => sh.exec(`git show :${sh.ShellString(f)}`),
-    })
-  })
-  .then(({ failCount, filenames }) => {
-    if (failCount) {
-      fail = true
-    }
-
-    lintedFilesCount += filenames.length
-
-    return
-  })
-  .then(() => {
-    if (fail) {
-      process.exit(1)
-    }
-
-    // eslint-disable-next-line no-console
-    console.log(chalk.bold(`${chalk.green(lintedFilesCount)} files linted successfully`))
-
-    return
-  })
-}
-
-if (!module.parent) {
-  start()
-}
-
-module.exports = { start }
diff --git a/npm/eslint-plugin-dev/lib/scripts/lint-pre-push.js b/npm/eslint-plugin-dev/lib/scripts/lint-pre-push.js
deleted file mode 100755
index 42c46a6a189e..000000000000
--- a/npm/eslint-plugin-dev/lib/scripts/lint-pre-push.js
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/usr/bin/env node
-
-const sh = require('shelljs')
-const utils = require('./utils')
-const chalk = require('chalk')
-const debug = require('debug')('lint-pre-push')
-
-const start = () => {
-  const getFilenames = () => {
-    const GIT_PARAMS = (process.env.HUSKY_GIT_PARAMS || 'origin').split(' ')
-    const gitRemote = GIT_PARAMS[0]
-    const gitBranch = sh.exec(`git branch`).grep(/\*/).split(/\s/)[1]
-    const gitRemoteBranch = `${gitRemote}/${gitBranch}`
-
-    debug({ gitRemote })
-    debug({ gitBranch })
-
-    return sh
-    .exec(`git diff HEAD ${sh.ShellString(gitRemoteBranch)} --name-only`)
-    .split('\n')
-  }
-
-  return utils.lintFilesByText({
-    getFilenames,
-    getFileText: (f) => sh.exec(`git show :${sh.ShellString(f)}`),
-  })
-  .then(({ failCount, filenames }) => {
-    if (failCount) {
-      process.exit(failCount)
-    }
-
-    // eslint-disable-next-line no-console
-    console.log(chalk.bold(`${chalk.green(filenames.length)} files linted successfully`))
-
-    return
-  })
-}
-
-if (!module.parent) {
-  start()
-}
-
-module.exports = { start }
diff --git a/npm/eslint-plugin-dev/lib/scripts/lint-staged.js b/npm/eslint-plugin-dev/lib/scripts/lint-staged.js
deleted file mode 100755
index 9a5d836ed4ac..000000000000
--- a/npm/eslint-plugin-dev/lib/scripts/lint-staged.js
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/env node
-
-/* eslint-disable quotes */
-const sh = require('shelljs')
-const utils = require('./utils')
-const chalk = require('chalk')
-
-const start = () => {
-  return utils.lintFilesByText({
-    // list only modified and added files
-    getFilenames: () => sh.exec(`git diff --name-only --diff-filter=MA --staged`).split('\n'),
-    getFileText: (f) => sh.exec(`git show :${sh.ShellString(f)}`),
-  })
-  .then(({ failCount, filenames }) => {
-    if (failCount) {
-      process.exit(failCount)
-    }
-
-    // eslint-disable-next-line no-console
-    console.log(chalk.bold(`${chalk.green(filenames.length)} files linted successfully`))
-
-    return
-  })
-}
-
-if (!module.parent) {
-  start()
-}
-
-module.exports = { start }
diff --git a/npm/eslint-plugin-dev/lib/scripts/lint.spec.js b/npm/eslint-plugin-dev/lib/scripts/lint.spec.js
deleted file mode 100644
index 4e83961072cd..000000000000
--- a/npm/eslint-plugin-dev/lib/scripts/lint.spec.js
+++ /dev/null
@@ -1,163 +0,0 @@
-const sh = require('shelljs')
-const sinon = require('sinon')
-const lintStaged = require('./lint-staged')
-const lintChanged = require('./lint-changed')
-const lintPrePush = require('./lint-pre-push')
-const lintPreCommit = require('./lint-pre-commit')
-const chai = require('chai')
-const debug = require('debug')('lint.spec')
-
-const { expect } = chai
-
-chai.use(require('sinon-chai'))
-
-const _env = process.env
-const _argv = process.argv
-
-const getStagedFiles = () => sh.ShellString('foo.js\nbar.js')
-const getUnstagedFiles = () => sh.ShellString('bar.js\nbaz.js')
-const getCommittedFiles = () => sh.ShellString('baz.js\nquux.js')
-
-const eslintSuccess = (...args) => {
-  debug('eslintSuccess:', args)
-  const ret = sh.ShellString(`GOOD JS`)
-
-  ret.exec = sinon.stub().yields(null, 'success')
-
-  return ret
-}
-
-const eslintFailure = (...args) => {
-  debug('eslintFailure:', args)
-  const ret = sh.ShellString(`BAD JS`)
-
-  ret.exec = sinon.stub().yields('foo error')
-
-  return ret
-}
-
-beforeEach(() => {
-  sinon.stub(sh, 'exec')
-  sinon.stub(sh, 'cat')
-  sinon.stub(process, 'exit')
-
-  sh.exec
-  .withArgs(`git branch`).returns(sh.ShellString('* mybranch'))
-
-  .withArgs(`git diff --name-only --diff-filter=MA --staged`)
-  .returns(getStagedFiles())
-
-  .withArgs(`git diff --name-only --diff-filter=M`)
-  .returns(getUnstagedFiles())
-
-  .withArgs(`git diff HEAD origin/mybranch --name-only`)
-  .returns(getCommittedFiles())
-
-  sh.exec.callsFake(eslintSuccess)
-})
-
-describe('lint-staged', () => {
-  it('lint success', async () => {
-    await lintStaged.start()
-    expect(process.exit).not.calledOnce
-  })
-
-  it('lint failures', async () => {
-    sh.exec.callsFake(eslintFailure)
-
-    await lintStaged.start()
-    expect(process.exit).calledOnce
-  })
-})
-
-describe('lint-changed', () => {
-  const filenames = 'bar.js baz.js foo.js'
-
-  beforeEach(() => {
-    sh.exec
-    .withArgs(`./node_modules/.bin/eslint --color=true '' ${filenames}`)
-    .yields(null, 'success')
-  })
-
-  it('lint success', async () => {
-    await lintChanged.start()
-    expect(process.exit).not.calledOnce
-  })
-
-  it('lint failures', async () => {
-    sh.exec
-    .withArgs(`./node_modules/.bin/eslint --color=true '' ${filenames}`)
-    .yields('foo error')
-
-    await lintChanged.start()
-    expect(process.exit).calledOnce
-  })
-
-  it('lint with --fix', async () => {
-    process.argv = ['_', '_', '--fix']
-    sh.exec
-    .withArgs(`./node_modules/.bin/eslint --color=true --fix '' ${filenames}`)
-    .yields(null, 'success')
-
-    await lintChanged.start()
-    expect(process.exit).not.calledOnce
-  })
-})
-
-describe('lint-pre-push', () => {
-  beforeEach(() => {
-    process.env.HUSKY_GIT_PARAMS = 'origin git@github.com:cypress-io/cypress.git'
-  })
-
-  it('lint success', async () => {
-    await lintPrePush.start()
-    expect(process.exit).not.calledOnce
-  })
-
-  it('lint failures', async () => {
-    sh.exec.callsFake(eslintFailure)
-
-    await lintPrePush.start()
-    expect(process.exit).calledOnce
-  })
-})
-
-describe('lint-pre-commit', () => {
-  beforeEach(() => {
-    sh.exec
-    .withArgs(`./node_modules/.bin/eslint --color=true --fix '' foo.js`)
-    .yields(null, 'success')
-  })
-
-  it('lint success', async () => {
-    await lintPreCommit.start()
-    expect(process.exit).not.calledOnce
-
-    expect(sh.exec.withArgs('git add foo.js')).calledOnce
-  })
-
-  it('lint failures', async () => {
-    sh.exec.callsFake(eslintFailure)
-
-    await lintPreCommit.start()
-    expect(process.exit).calledOnce
-  })
-})
-
-afterEach(() => {
-  process.argv = _argv
-  process.env = _env
-  sinon.restore()
-})
-
-// sinon.addBehavior('withArgIncludes', (stub, str) => {
-
-// })
-
-// function withArgsInclude() {
-//   this.
-//   .callsFake((...args) => {
-//     args[0].includes()
-
-//   })
-// }
diff --git a/npm/eslint-plugin-dev/lib/scripts/utils.js b/npm/eslint-plugin-dev/lib/scripts/utils.js
deleted file mode 100644
index d718464f77c9..000000000000
--- a/npm/eslint-plugin-dev/lib/scripts/utils.js
+++ /dev/null
@@ -1,112 +0,0 @@
-const path = require('path')
-const _ = require('lodash')
-const EE = require('events')
-const sh = require('shelljs')
-// const chalk = require('chalk')
-const Promise = require('bluebird')
-const debug = require('debug')('lint/util')
-
-const filesRegex = /\.(js|jsx|ts|tsx|coffee|json|eslintrc)$/
-
-Promise.config({
-  warnings: true,
-  longStackTraces: true,
-})
-
-module.exports = {
-  lintFilesByText: (options) => {
-    sh.config.silent = true
-    EE.defaultMaxListeners = 100
-
-    const opts = _.defaults(options, {
-      getFilenames: null,
-      getFileText: null,
-    })
-
-    const filenames = opts.getFilenames().filter((v) => filesRegex.test(v))
-
-    debug(`linting:
-    ${filenames.join('\n\t')}
-    `)
-
-    return Promise.map(filenames, (f) => {
-      debug('started linting', f)
-
-      const fileText = opts.getFileText(f)
-
-      debugTerse('file text:', fileText)
-
-      if (!fileText.toString()) return
-
-      const lintCommand = `./node_modules/.bin/eslint --stdin --stdin-filename ${sh.ShellString(f)} --color=true`
-
-      return Promise.promisify(fileText.exec)(
-        lintCommand,
-        { silent: false, async: true },
-      )
-      .tapCatch(debugTerse)
-      .return(false)
-      .catchReturn(true)
-      .finally(() => {
-        debug('finished linting ', f)
-      })
-    }, { concurrency: 0 })
-    .then((results) => {
-      const failCount = _.filter(results).length
-
-      debug({ failCount })
-
-      return { failCount, filenames }
-    })
-  },
-  lintFilesByName: (options) => {
-    sh.config.silent = true
-
-    const opts = _.defaults(options, {
-      getFilenames: null,
-      fix: false,
-    })
-
-    const filenames = opts.getFilenames().filter((v) => filesRegex.test(v))
-
-    debug(`linting:
-    ${filenames.join('\n\t')}
-    `)
-
-    const filenamesString = sh.ShellString(filenames.join(' '))
-
-    const lintCommand = opts.fix ?
-      `npx eslint --color=true --fix ${filenamesString}`
-      : `npx eslint --color=true ${filenamesString}`
-
-    // always run command in the root of the monorepo!
-    return Promise.promisify(sh.exec)(
-      lintCommand,
-      { silent: false, async: true, cwd: path.resolve(__dirname, '../../../../') },
-    )
-    .tapCatch(debugTerse)
-    .return(false)
-    .catchReturn(true)
-    .then((failed) => {
-      return {
-        failed,
-        filenames,
-      }
-    })
-  },
-
-}
-
-const debugTerse = (...args) => {
-  args = args.map((arg) => {
-    let truncated = arg.toString().slice(0, 15)
-
-    if (truncated !== arg.toString()) {
-      truncated = `${truncated}...`
-    }
-
-    return truncated
-  })
-
-  debug(...args)
-}
diff --git a/npm/eslint-plugin-dev/package.json b/npm/eslint-plugin-dev/package.json
deleted file mode 100644
index 717a1e221d92..000000000000
--- a/npm/eslint-plugin-dev/package.json
+++ /dev/null
@@ -1,57 +0,0 @@
-{
-  "name": "@cypress/eslint-plugin-dev",
-  "version": "0.0.0-development",
-  "description": "Common ESLint rules shared by Cypress development-only packages",
-  "main": "./lib",
-  "scripts": {
-    "lint": "eslint --ext .js,json,.eslintrc .",
-    "lint-changed": "node ./lib/scripts/lint-changed",
-    "lint-fix": "npm run lint -- --fix",
-    "test": "mocha"
-  },
-  "dependencies": {
-    "bluebird": "3.5.5",
-    "chalk": "^2.4.2",
-    "eslint-rule-composer": "^0.3.0",
-    "lodash": "^4.17.15",
-    "shelljs": "0.8.5"
-  },
-  "devDependencies": {
-    "eslint": "^8.56.0",
-    "eslint-plugin-import": "^2.29.1",
-    "eslint-plugin-json-format": "^2.0.0",
-    "eslint-plugin-mocha": "^8.2.0",
-    "eslint-plugin-promise": "^4.2.1",
-    "sinon": "^7.3.2",
-    "sinon-chai": "^3.3.0"
-  },
-  "peerDependencies": {
-    "@babel/eslint-parser": "^7.25.1",
-    "@typescript-eslint/eslint-plugin": ">= 7.0.0",
-    "@typescript-eslint/parser": ">= 7.0.0",
-    "eslint": "^= 8.0.0",
-    "eslint-plugin-import": ">= 2.0.0",
-    "eslint-plugin-json-format": ">= 2.0.0",
-    "eslint-plugin-mocha": " >= 8.0.0",
-    "eslint-plugin-react": ">= 7.22.0"
-  },
-  "bin": {
-    "lint-changed": "./lib/scripts/lint-changed.js",
-    "lint-pre-commit": "./lib/scripts/lint-pre-commit.js"
-  },
-  "license": "MIT",
-  "repository": {
-    "type": "git",
-    "url": "https://github.com/cypress-io/cypress.git"
-  },
-  "homepage": "https://github.com/cypress-io/cypress/tree/develop/npm/eslint-plugin-dev#readme",
-  "bugs": {
-    "url": "https://github.com/cypress-io/cypress/issues/new?assignees=&labels=npm%3A%20%40cypress%2Feslint-plugin-dev&template=bug-report.md"
-  },
-  "keywords": [
-    "cypress",
-    "eslint",
-    "eslintplugin"
-  ],
-  "nx": {}
-}
diff --git a/npm/eslint-plugin-dev/test/.eslintrc b/npm/eslint-plugin-dev/test/.eslintrc
deleted file mode 100644
index b5ed5206d083..000000000000
--- a/npm/eslint-plugin-dev/test/.eslintrc
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ]
-}
diff --git a/npm/eslint-plugin-dev/test/arrow-body-multiline-braces.spec.js b/npm/eslint-plugin-dev/test/arrow-body-multiline-braces.spec.js
deleted file mode 100644
index 6698ab68db40..000000000000
--- a/npm/eslint-plugin-dev/test/arrow-body-multiline-braces.spec.js
+++ /dev/null
@@ -1,55 +0,0 @@
-const path = require('path')
-const eslint = require('eslint')
-const plugin = require('../lib')
-const _ = require('lodash')
-const { expect } = require('chai')
-
-const pluginName = '__plugin__'
-const ESLint = eslint.ESLint
-
-async function execute (file, options = {}) {
-  const defaultConfig = {
-    fix: true,
-    ignore: false,
-    useEslintrc: false,
-    baseConfig: {
-      parserOptions: {
-        ecmaVersion: 2018,
-        sourceType: 'module',
-      },
-      rules: {
-        [`${pluginName}/arrow-body-multiline-braces`]: ['error', 'always'],
-      },
-      plugins: [pluginName],
-    },
-    plugins: {
-      [pluginName]: plugin,
-    },
-  }
-  const opts = _.defaultsDeep(options, defaultConfig)
-
-  const cli = new ESLint(opts)
-
-  const results = await cli.lintFiles([path.join(__dirname, file)])
-
-  return results[0]
-}
-
-describe('arrow-body-multiline-braces', () => {
-  it('lint multiline js', async () => {
-    const filename = './fixtures/multiline.js'
-    const result = await execute(filename, {
-      fix: true,
-    })
-
-    expect(result.output).to.contain('{')
-  })
-
-  it('lint oneline js', async () => {
-    const filename = './fixtures/oneline.js'
-    const result = await execute(filename, { fix: false })
-
-    expect(result.output).not.ok
-    expect(result.errorCount).eq(0)
-  })
-})
diff --git a/npm/eslint-plugin-dev/test/fixtures/multiline.js b/npm/eslint-plugin-dev/test/fixtures/multiline.js
deleted file mode 100644
index 76489e2cb108..000000000000
--- a/npm/eslint-plugin-dev/test/fixtures/multiline.js
+++ /dev/null
@@ -1,9 +0,0 @@
-
-const foo = (fn) =>
-  fn(
-    'foo',
-    'bar',
-  )
-
-foo()
-
diff --git a/npm/eslint-plugin-dev/test/fixtures/no-return-before-fail.js b/npm/eslint-plugin-dev/test/fixtures/no-return-before-fail.js
deleted file mode 100644
index dc4fa2cf2ad2..000000000000
--- a/npm/eslint-plugin-dev/test/fixtures/no-return-before-fail.js
+++ /dev/null
@@ -1,10 +0,0 @@
-describe('outer', ()=>{
-  return describe('some test', ()=>{
-    return context('some test', ()=>{
-      return it('some test', ()=>{
-        return expect('foo').to.eq('bar')
-      })
-      return someFn()
-    })
-  })
-})
diff --git a/npm/eslint-plugin-dev/test/fixtures/no-return-before-pass.js b/npm/eslint-plugin-dev/test/fixtures/no-return-before-pass.js
deleted file mode 100644
index 6ef7cc384554..000000000000
--- a/npm/eslint-plugin-dev/test/fixtures/no-return-before-pass.js
+++ /dev/null
@@ -1,10 +0,0 @@
-describe('outer', ()=>{
-  describe('some test', ()=>{
-    context('some test', ()=>{
-      it('some test', ()=>{
-        expect('foo').to.eq('bar')
-      })
-      return someFn()
-    })
-  })
-})
diff --git a/npm/eslint-plugin-dev/test/fixtures/oneline.js b/npm/eslint-plugin-dev/test/fixtures/oneline.js
deleted file mode 100644
index bfafd0733d61..000000000000
--- a/npm/eslint-plugin-dev/test/fixtures/oneline.js
+++ /dev/null
@@ -1,5 +0,0 @@
-const foo = () => console.log('foo')
-
-
-foo()
-
diff --git a/npm/eslint-plugin-dev/test/fixtures/skip-comment-config.js b/npm/eslint-plugin-dev/test/fixtures/skip-comment-config.js
deleted file mode 100644
index 9f4393fe36a7..000000000000
--- a/npm/eslint-plugin-dev/test/fixtures/skip-comment-config.js
+++ /dev/null
@@ -1,10 +0,0 @@
-// FOOBAR: im skipping this for good reason
-it.skip('some test', ()=>{
-
-})
-
-// NOTE: im skipping this for good reason
-it.skip('some test', ()=>{
-
-})
-
diff --git a/npm/eslint-plugin-dev/test/fixtures/skip-comment-fail.js b/npm/eslint-plugin-dev/test/fixtures/skip-comment-fail.js
deleted file mode 100644
index 8f70e0d44711..000000000000
--- a/npm/eslint-plugin-dev/test/fixtures/skip-comment-fail.js
+++ /dev/null
@@ -1,11 +0,0 @@
-it.skip('some test', ()=>{
-
-})
-
-describe.skip('some test', ()=>{
-
-})
-
-context.skip('some test', ()=>{
-
-})
diff --git a/npm/eslint-plugin-dev/test/fixtures/skip-comment-pass.js b/npm/eslint-plugin-dev/test/fixtures/skip-comment-pass.js
deleted file mode 100644
index 64b242b6fc56..000000000000
--- a/npm/eslint-plugin-dev/test/fixtures/skip-comment-pass.js
+++ /dev/null
@@ -1,25 +0,0 @@
-// NOTE: im skipping this for good reason
-
-it.skip('some test', ()=>{
-
-})
-
-// NOTE: im skipping this for good reason
-// some other line
-describe.skip('some test', ()=>{
-
-})
-
-/* NOTE: im skipping this for good reason */
-context.skip('some test', ()=>{
-
-})
-
-// TODO: im skipping this for good reason
-it.skip('some test', ()=>{
-
-})
-//# TODO: im skipping this for good reason
-it.skip('some test', ()=>{
-
-})
diff --git a/npm/eslint-plugin-dev/test/fixtures/with-only.js b/npm/eslint-plugin-dev/test/fixtures/with-only.js
deleted file mode 100644
index c8178b523f70..000000000000
--- a/npm/eslint-plugin-dev/test/fixtures/with-only.js
+++ /dev/null
@@ -1,11 +0,0 @@
-it.only('foo', () => {
-  'foo'
-})
-
-describe.only('foo', () => {
-  'foo'
-})
-
-context.only('foo', () => {
-  'foo'
-})
diff --git a/npm/eslint-plugin-dev/test/no-only.spec.js b/npm/eslint-plugin-dev/test/no-only.spec.js
deleted file mode 100644
index 8162bf14886d..000000000000
--- a/npm/eslint-plugin-dev/test/no-only.spec.js
+++ /dev/null
@@ -1,53 +0,0 @@
-const path = require('path')
-const eslint = require('eslint')
-const plugin = require('..')
-const _ = require('lodash')
-const { expect } = require('chai')
-
-const ruleName = 'no-only'
-const pluginName = '__plugin__'
-const ESLint = eslint.ESLint
-
-async function execute (file, options = {}) {
-  const defaultConfig = {
-    fix: true,
-    ignore: false,
-    useEslintrc: false,
-    baseConfig: {
-      parserOptions: {
-        ecmaVersion: 2018,
-        sourceType: 'module',
-      },
-      rules: {
-        [`${pluginName}/${ruleName}`]: ['error'],
-      },
-      plugins: [pluginName],
-    },
-    plugins: {
-      [pluginName]: plugin,
-    },
-  }
-  const opts = _.defaultsDeep(options, defaultConfig)
-
-  const cli = new ESLint(opts)
-
-  const results = await cli.lintFiles([path.join(__dirname, file)])
-
-  return results[0]
-}
-
-describe('no-only', () => {
-  it('lint js with only', async () => {
-    const filename = './fixtures/with-only.js'
-    const result = await execute(filename, {
-      fix: true,
-    })
-
-    expect(result.errorCount).eq(3)
-    expect(result.messages[0].message).to.contain('it')
-    expect(result.messages[1].message).to.contain('describe')
-    expect(result.messages[2].message).to.contain('context')
-
-    expect(result.output).not.exist
-  })
-})
diff --git a/npm/eslint-plugin-dev/test/no-return-before.spec.js b/npm/eslint-plugin-dev/test/no-return-before.spec.js
deleted file mode 100644
index e53b67d1798f..000000000000
--- a/npm/eslint-plugin-dev/test/no-return-before.spec.js
+++ /dev/null
@@ -1,99 +0,0 @@
-const path = require('path')
-const eslint = require('eslint')
-const plugin = require('..')
-const _ = require('lodash')
-const { stripIndent } = require('common-tags')
-const { expect } = require('chai')
-
-const ruleName = 'no-return-before'
-const pluginName = '__plugin__'
-const ESLint = eslint.ESLint
-
-async function execute (file, options = {}) {
-  const defaultConfig = {
-    fix: true,
-    ignore: false,
-    useEslintrc: false,
-    baseConfig: {
-      parserOptions: {
-        ecmaVersion: 2018,
-        sourceType: 'module',
-      },
-      rules: {
-        [`${pluginName}/${ruleName}`]: ['error'],
-      },
-      plugins: [pluginName],
-    },
-    plugins: {
-      [pluginName]: plugin,
-    },
-  }
-  const opts = _.defaultsDeep(options, defaultConfig)
-
-  const cli = new ESLint(opts)
-
-  const results = await cli.lintFiles([path.join(__dirname, file)])
-
-  return results[0]
-}
-
-describe(ruleName, () => {
-  it('pass', async () => {
-    const filename = './fixtures/no-return-before-pass.js'
-    const result = await execute(filename)
-
-    expect(result.errorCount).equal(0)
-  })
-
-  it('fail', async () => {
-    const filename = './fixtures/no-return-before-fail.js'
-    const result = await execute(filename, {
-      fix: false,
-    })
-
-    expect(result.errorCount).equal(4)
-    expect(result.messages[0].message).to.contain(`after 'describe'`)
-  })
-
-  it('fix fail', async () => {
-    const filename = './fixtures/no-return-before-fail.js'
-    const result = await execute(filename)
-
-    expect(result.output).equal(`${stripIndent`
-    describe('outer', ()=>{
-      describe('some test', ()=>{
-        context('some test', ()=>{
-          it('some test', ()=>{
-            expect('foo').to.eq('bar')
-          })
-          return someFn()
-        })
-      })
-    })
-    `}\n`)
-  })
-
-  describe('config', () => {
-    it('config [tokens]', async () => {
-      const filename = './fixtures/no-return-before-fail.js'
-      const result = await execute(filename, {
-        fix: false,
-        baseConfig: {
-          rules: {
-            [`${pluginName}/${ruleName}`]: [
-              'error', {
-                tokens: ['someFn'],
-              },
-            ],
-          },
-        },
-      })
-
-      expect(result.errorCount).equal(1)
-
-      expect(result.messages[0].message).to.contain('someFn')
-
-      expect(result.output).not.not.exist
-    })
-  })
-})
diff --git a/npm/eslint-plugin-dev/test/skip-comment.spec.js b/npm/eslint-plugin-dev/test/skip-comment.spec.js
deleted file mode 100644
index 10b7008787e2..000000000000
--- a/npm/eslint-plugin-dev/test/skip-comment.spec.js
+++ /dev/null
@@ -1,92 +0,0 @@
-const path = require('path')
-const eslint = require('eslint')
-const plugin = require('..')
-const _ = require('lodash')
-const { expect } = require('chai')
-
-const ruleName = 'skip-comment'
-const pluginName = '__plugin__'
-const ESLint = eslint.ESLint
-
-async function execute (file, options = {}) {
-  const defaultConfig = {
-    fix: true,
-    ignore: false,
-    useEslintrc: false,
-    baseConfig: {
-      parserOptions: {
-        ecmaVersion: 2018,
-        sourceType: 'module',
-      },
-      rules: {
-        [`${pluginName}/${ruleName}`]: ['error'],
-      },
-      plugins: [pluginName],
-    },
-    plugins: {
-      [pluginName]: plugin,
-    },
-  }
-  const opts = _.defaultsDeep(options, defaultConfig)
-
-  const cli = new ESLint(opts)
-
-  const results = await cli.lintFiles([path.join(__dirname, file)])
-
-  return results[0]
-}
-
-describe('skip-comment', () => {
-  it('skip test with comment', async () => {
-    const filename = './fixtures/skip-comment-pass.js'
-    const result = await execute(filename, {
-      fix: true,
-    })
-
-    expect(result.errorCount).equal(0)
-  })
-
-  it('skip test without comment', async () => {
-    const filename = './fixtures/skip-comment-fail.js'
-    const result = await execute(filename, {
-      fix: true,
-    })
-
-    expect(result.errorCount).equal(3)
-
-    expect(result.messages[0].message).to.contain('it')
-    expect(result.messages[0].message).to.contain('NOTE:')
-    expect(result.messages[0].message).to.contain('TODO:')
-    expect(result.messages[1].message).to.contain('describe')
-    expect(result.messages[1].message).to.contain('NOTE:')
-    expect(result.messages[2].message).to.contain('context')
-    expect(result.messages[2].message).to.contain('NOTE:')
-
-    expect(result.output).not.not.exist
-  })
-
-  describe('config', () => {
-    it('skip test without comment', async () => {
-      const filename = './fixtures/skip-comment-config.js'
-      const result = await execute(filename, {
-        fix: true,
-        baseConfig: {
-          rules: {
-            [`${pluginName}/${ruleName}`]: [
-              'error', {
-                commentTokens: ['FOOBAR:'],
-              },
-            ],
-          },
-        },
-      })
-
-      expect(result.errorCount).equal(1)
-
-      expect(result.messages[0].message).to.contain('it')
-      expect(result.messages[0].message).to.contain('FOOBAR:')
-
-      expect(result.output).not.exist
-    })
-  })
-})

From 7f3c67e546b64bb8bda396fdbc11bdaccfdd756d Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 13:48:19 -0500
Subject: [PATCH 002/127] more fully remove eslint dev pkg

---
 .circleci/workflows.yml |   16 -
 CONTRIBUTING.md         |    4 +-
 yarn.lock               | 1982 +++++++++++++++++++++------------------
 3 files changed, 1052 insertions(+), 950 deletions(-)

diff --git a/.circleci/workflows.yml b/.circleci/workflows.yml
index b69469b746be..a80e2faeb2cd 100644
--- a/.circleci/workflows.yml
+++ b/.circleci/workflows.yml
@@ -2319,14 +2319,6 @@ jobs:
           path: npm/grep/test_results
       - store-npm-logs
 
-  npm-eslint-plugin-dev:
-    <<: *defaults
-    steps:
-      - restore_cached_workspace
-      - run:
-          name: Run tests
-          command: yarn workspace @cypress/eslint-plugin-dev test
-
   npm-cypress-schematic:
     <<: *defaults
     steps:
@@ -3013,9 +3005,6 @@ linux-x64-workflow: &linux-x64-workflow
     - npm-mount-utils:
         requires:
           - build
-    - npm-eslint-plugin-dev:
-        requires:
-          - build
     - npm-cypress-schematic:
         requires:
           - build
@@ -3028,7 +3017,6 @@ linux-x64-workflow: &linux-x64-workflow
         requires:
           - check-ts
           - npm-angular
-          - npm-eslint-plugin-dev
           - npm-puppeteer-unit-tests
           - npm-puppeteer-cypress-tests
           - npm-react
@@ -3384,9 +3372,6 @@ linux-x64-contributor-workflow: &linux-x64-contributor-workflow
     - npm-mount-utils:
         requires:
           - build
-    - npm-eslint-plugin-dev:
-        requires:
-          - build
     - npm-cypress-schematic:
         requires:
           - build
@@ -3398,7 +3383,6 @@ linux-x64-contributor-workflow: &linux-x64-contributor-workflow
         requires:
           - check-ts
           - npm-angular
-          - npm-eslint-plugin-dev
           - npm-puppeteer-unit-tests
           - npm-puppeteer-cypress-tests
           - npm-react
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 3ee8c7d81040..9d0c6c1c71d3 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -182,7 +182,6 @@ Here is a list of the npm packages in this repository:
  | Folder Name                                            | Package Name                       | Purpose                                                                      |
  | :----------------------------------------------------- | :--------------------------------- | :--------------------------------------------------------------------------- |
  | [angular](./npm/angular)                               | `@cypress/angular`                   | Cypress component testing for Angular.     |
- | [eslint-plugin-dev](./npm/eslint-plugin-dev)           | `@cypress/eslint-plugin-dev`       | Eslint plugin for internal development.          |
  | [grep](./npm/grep)                                       | `@cypress/grep`                     | Filter tests using substring                        |
  | [mount-utils](./npm/mount-utils)                       | `@cypress/mount-utils`             | Common functionality for Vue/React/Angular adapters. |
  | [react](./npm/react)                                   | `@cypress/react`                   | Cypress component testing for React.             |
@@ -341,8 +340,7 @@ Many Cypress packages print out debugging information to console via the `debug`
 
 ### Coding Style
 
-We use [eslint](https://eslint.org/) to lint all JavaScript code and follow rules specified in
-[@cypress/eslint-plugin-dev](./npm/eslint-plugin-dev) plugin.
+We use [eslint](https://eslint.org/) to lint all JavaScript code.
 
 This project uses a Git pre-commit hook to lint staged files before committing. See the [`lint-staged` project](https://github.com/okonet/lint-staged) for details.
 `lint-staged` will try to auto-fix any lint errors with `eslint --fix`, so if it fails, you must manually fix the lint errors before committing.
diff --git a/yarn.lock b/yarn.lock
index 527ec23f98fe..9b7e26bb94f3 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -132,13 +132,6 @@
   resolved "https://registry.yarnpkg.com/@antfu/utils/-/utils-0.7.8.tgz#86cb0974bcab7e64e29b57d6d9021102307257de"
   integrity sha512-rWQkqXRESdjXtc+7NRfK9lASQjpXJu1ayp7qi1d23zZorY+wBHVLHHoVcMsEnkqEBWTFqbztO7/QdJFzyEcLTg==
 
-"@ardatan/aggregate-error@0.0.6":
-  version "0.0.6"
-  resolved "https://registry.yarnpkg.com/@ardatan/aggregate-error/-/aggregate-error-0.0.6.tgz#fe6924771ea40fc98dc7a7045c2e872dc8527609"
-  integrity sha512-vyrkEHG1jrukmzTPtyWB4NLPauUw5bQeg4uhn8f+1SSynmrOcyvlb1GKQjjgoBzElLdfXCRYX8UnBlhklOHYRQ==
-  dependencies:
-    tslib "~2.0.1"
-
 "@ardatan/fetch-event-source@2.0.2":
   version "2.0.2"
   resolved "https://registry.yarnpkg.com/@ardatan/fetch-event-source/-/fetch-event-source-2.0.2.tgz#734aa3eaa0da456453d24d8dc7c14d5e366a8d21"
@@ -2512,7 +2505,7 @@
     core-js-pure "^3.0.0"
     regenerator-runtime "^0.13.4"
 
-"@babel/runtime@^7.0.0", "@babel/runtime@^7.10.0", "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.14.6", "@babel/runtime@^7.18.9", "@babel/runtime@^7.25.0", "@babel/runtime@^7.8.4":
+"@babel/runtime@^7.0.0", "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.14.6", "@babel/runtime@^7.25.0", "@babel/runtime@^7.8.4":
   version "7.25.0"
   resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.25.0.tgz#3af9a91c1b739c569d5d80cc917280919c544ecb"
   integrity sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==
@@ -3558,30 +3551,59 @@
   dependencies:
     eslint-visitor-keys "^3.3.0"
 
-"@eslint-community/regexpp@^4.5.1", "@eslint-community/regexpp@^4.6.1":
-  version "4.10.0"
-  resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.10.0.tgz#548f6de556857c8bb73bbee70c35dc82a2e74d63"
-  integrity sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==
+"@eslint-community/regexpp@^4.10.0", "@eslint-community/regexpp@^4.12.1", "@eslint-community/regexpp@^4.5.1":
+  version "4.12.1"
+  resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz#cfc6cffe39df390a3841cde2abccf92eaa7ae0e0"
+  integrity sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==
 
-"@eslint/eslintrc@^2.1.4":
-  version "2.1.4"
-  resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad"
-  integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==
+"@eslint/config-array@^0.19.0":
+  version "0.19.1"
+  resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.19.1.tgz#734aaea2c40be22bbb1f2a9dac687c57a6a4c984"
+  integrity sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==
+  dependencies:
+    "@eslint/object-schema" "^2.1.5"
+    debug "^4.3.1"
+    minimatch "^3.1.2"
+
+"@eslint/core@^0.10.0":
+  version "0.10.0"
+  resolved "https://registry.yarnpkg.com/@eslint/core/-/core-0.10.0.tgz#23727063c21b335f752dbb3a16450f6f9cbc9091"
+  integrity sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==
+  dependencies:
+    "@types/json-schema" "^7.0.15"
+
+"@eslint/eslintrc@^3.2.0":
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-3.2.0.tgz#57470ac4e2e283a6bf76044d63281196e370542c"
+  integrity sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==
   dependencies:
     ajv "^6.12.4"
     debug "^4.3.2"
-    espree "^9.6.0"
-    globals "^13.19.0"
+    espree "^10.0.1"
+    globals "^14.0.0"
     ignore "^5.2.0"
     import-fresh "^3.2.1"
     js-yaml "^4.1.0"
     minimatch "^3.1.2"
     strip-json-comments "^3.1.1"
 
-"@eslint/js@8.57.0":
-  version "8.57.0"
-  resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.0.tgz#a5417ae8427873f1dd08b70b3574b453e67b5f7f"
-  integrity sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==
+"@eslint/js@9.18.0", "@eslint/js@^9.18.0":
+  version "9.18.0"
+  resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.18.0.tgz#3356f85d18ed3627ab107790b53caf7e1e3d1e84"
+  integrity sha512-fK6L7rxcq6/z+AaQMtiFTkvbHkBLNlwyRxHpKawP0x3u9+NC6MQTnFW+AdpwC6gfHTW0051cokQgtTN2FqlxQA==
+
+"@eslint/object-schema@^2.1.5":
+  version "2.1.5"
+  resolved "https://registry.yarnpkg.com/@eslint/object-schema/-/object-schema-2.1.5.tgz#8670a8f6258a2be5b2c620ff314a1d984c23eb2e"
+  integrity sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==
+
+"@eslint/plugin-kit@^0.2.5":
+  version "0.2.5"
+  resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.2.5.tgz#ee07372035539e7847ef834e3f5e7b79f09e3a81"
+  integrity sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==
+  dependencies:
+    "@eslint/core" "^0.10.0"
+    levn "^0.4.1"
 
 "@faker-js/faker@8.4.1":
   version "8.4.1"
@@ -4024,16 +4046,6 @@
     sync-fetch "0.3.0"
     tslib "~2.3.0"
 
-"@graphql-tools/batch-execute@^7.1.2":
-  version "7.1.2"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/batch-execute/-/batch-execute-7.1.2.tgz#35ba09a1e0f80f34f1ce111d23c40f039d4403a0"
-  integrity sha512-IuR2SB2MnC2ztA/XeTMTfWcA0Wy7ZH5u+nDkDNLAdX+AaSyDnsQS35sCmHqG0VOGTl7rzoyBWLCKGwSJplgtwg==
-  dependencies:
-    "@graphql-tools/utils" "^7.7.0"
-    dataloader "2.0.0"
-    tslib "~2.2.0"
-    value-or-promise "1.0.6"
-
 "@graphql-tools/batch-execute@^8.1.0", "@graphql-tools/batch-execute@^8.4.6":
   version "8.4.6"
   resolved "https://registry.yarnpkg.com/@graphql-tools/batch-execute/-/batch-execute-8.4.6.tgz#6033cbf0b7d30c901ae4a1a7de7501aedf5a6a10"
@@ -4067,19 +4079,6 @@
     tslib "~2.3.0"
     value-or-promise "1.0.10"
 
-"@graphql-tools/delegate@^7.0.1", "@graphql-tools/delegate@^7.1.5":
-  version "7.1.5"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/delegate/-/delegate-7.1.5.tgz#0b027819b7047eff29bacbd5032e34a3d64bd093"
-  integrity sha512-bQu+hDd37e+FZ0CQGEEczmRSfQRnnXeUxI/0miDV+NV/zCbEdIJj5tYFNrKT03W6wgdqx8U06d8L23LxvGri/g==
-  dependencies:
-    "@ardatan/aggregate-error" "0.0.6"
-    "@graphql-tools/batch-execute" "^7.1.2"
-    "@graphql-tools/schema" "^7.1.5"
-    "@graphql-tools/utils" "^7.7.1"
-    dataloader "2.0.0"
-    tslib "~2.2.0"
-    value-or-promise "1.0.6"
-
 "@graphql-tools/git-loader@^7.0.5":
   version "7.1.0"
   resolved "https://registry.yarnpkg.com/@graphql-tools/git-loader/-/git-loader-7.1.0.tgz#6d4978752e058b69047bccca1d11c50b1e29b401"
@@ -4102,15 +4101,6 @@
     cross-fetch "3.1.4"
     tslib "~2.3.0"
 
-"@graphql-tools/graphql-file-loader@^6.0.0":
-  version "6.2.7"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-file-loader/-/graphql-file-loader-6.2.7.tgz#d3720f2c4f4bb90eb2a03a7869a780c61945e143"
-  integrity sha512-5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ==
-  dependencies:
-    "@graphql-tools/import" "^6.2.6"
-    "@graphql-tools/utils" "^7.0.0"
-    tslib "~2.1.0"
-
 "@graphql-tools/graphql-file-loader@^7.0.1", "@graphql-tools/graphql-file-loader@^7.0.5":
   version "7.1.0"
   resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.1.0.tgz#6249074a7d268a30c81e923ee2bb991ec9a4c7b7"
@@ -4133,7 +4123,7 @@
     "@graphql-tools/utils" "^8.2.0"
     tslib "~2.3.0"
 
-"@graphql-tools/import@^6.2.6", "@graphql-tools/import@^6.4.0":
+"@graphql-tools/import@^6.4.0":
   version "6.6.1"
   resolved "https://registry.yarnpkg.com/@graphql-tools/import/-/import-6.6.1.tgz#2a7e1ceda10103ffeb8652a48ddc47150b035485"
   integrity sha512-i9WA6k+erJMci822o9w9DoX+uncVBK60LGGYW8mdbhX0l7wEubUpA000thJ1aarCusYh0u+ZT9qX0HyVPXu25Q==
@@ -4142,14 +4132,6 @@
     resolve-from "5.0.0"
     tslib "~2.3.0"
 
-"@graphql-tools/json-file-loader@^6.0.0":
-  version "6.2.6"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/json-file-loader/-/json-file-loader-6.2.6.tgz#830482cfd3721a0799cbf2fe5b09959d9332739a"
-  integrity sha512-CnfwBSY5926zyb6fkDBHnlTblHnHI4hoBALFYXnrg0Ev4yWU8B04DZl/pBRUc459VNgO2x8/mxGIZj2hPJG1EA==
-  dependencies:
-    "@graphql-tools/utils" "^7.0.0"
-    tslib "~2.0.1"
-
 "@graphql-tools/json-file-loader@^7.0.1", "@graphql-tools/json-file-loader@^7.1.2":
   version "7.2.0"
   resolved "https://registry.yarnpkg.com/@graphql-tools/json-file-loader/-/json-file-loader-7.2.0.tgz#0d5cdc372a5d925a470c7b2269f26dd659eef841"
@@ -4160,21 +4142,6 @@
     tslib "~2.3.0"
     unixify "^1.0.0"
 
-"@graphql-tools/load@^6.0.0":
-  version "6.2.8"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/load/-/load-6.2.8.tgz#16900fb6e75e1d075cad8f7ea439b334feb0b96a"
-  integrity sha512-JpbyXOXd8fJXdBh2ta0Q4w8ia6uK5FHzrTNmcvYBvflFuWly2LDTk2abbSl81zKkzswQMEd2UIYghXELRg8eTA==
-  dependencies:
-    "@graphql-tools/merge" "^6.2.12"
-    "@graphql-tools/utils" "^7.5.0"
-    globby "11.0.3"
-    import-from "3.0.0"
-    is-glob "4.0.1"
-    p-limit "3.1.0"
-    tslib "~2.2.0"
-    unixify "1.0.0"
-    valid-url "1.0.9"
-
 "@graphql-tools/load@^7.1.0", "@graphql-tools/load@^7.3.0":
   version "7.3.2"
   resolved "https://registry.yarnpkg.com/@graphql-tools/load/-/load-7.3.2.tgz#0edd9c0b464111968bfca148457a4c97e23fc030"
@@ -4185,16 +4152,7 @@
     p-limit "3.1.0"
     tslib "~2.3.0"
 
-"@graphql-tools/merge@6.0.0 - 6.2.14":
-  version "6.2.14"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-6.2.14.tgz#694e2a2785ba47558e5665687feddd2935e9d94e"
-  integrity sha512-RWT4Td0ROJai2eR66NHejgf8UwnXJqZxXgDWDI+7hua5vNA2OW8Mf9K1Wav1ZkjWnuRp4ztNtkZGie5ISw55ow==
-  dependencies:
-    "@graphql-tools/schema" "^7.0.0"
-    "@graphql-tools/utils" "^7.7.0"
-    tslib "~2.2.0"
-
-"@graphql-tools/merge@^6.2.12", "@graphql-tools/merge@^6.2.16":
+"@graphql-tools/merge@^6.2.16":
   version "6.2.17"
   resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-6.2.17.tgz#4dedf87d8435a5e1091d7cc8d4f371ed1e029f1f"
   integrity sha512-G5YrOew39fZf16VIrc49q3c8dBqQDD0ax5LYPiNja00xsXDi0T9zsEWVt06ApjtSdSF6HDddlu5S12QjeN8Tow==
@@ -4263,40 +4221,6 @@
     tslib "~2.3.0"
     value-or-promise "1.0.10"
 
-"@graphql-tools/schema@^7.0.0", "@graphql-tools/schema@^7.1.5":
-  version "7.1.5"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-7.1.5.tgz#07b24e52b182e736a6b77c829fc48b84d89aa711"
-  integrity sha512-uyn3HSNSckf4mvQSq0Q07CPaVZMNFCYEVxroApOaw802m9DcZPgf9XVPy/gda5GWj9AhbijfRYVTZQgHnJ4CXA==
-  dependencies:
-    "@graphql-tools/utils" "^7.1.2"
-    tslib "~2.2.0"
-    value-or-promise "1.0.6"
-
-"@graphql-tools/url-loader@^6.0.0":
-  version "6.10.1"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/url-loader/-/url-loader-6.10.1.tgz#dc741e4299e0e7ddf435eba50a1f713b3e763b33"
-  integrity sha512-DSDrbhQIv7fheQ60pfDpGD256ixUQIR6Hhf9Z5bRjVkXOCvO5XrkwoWLiU7iHL81GB1r0Ba31bf+sl+D4nyyfw==
-  dependencies:
-    "@graphql-tools/delegate" "^7.0.1"
-    "@graphql-tools/utils" "^7.9.0"
-    "@graphql-tools/wrap" "^7.0.4"
-    "@microsoft/fetch-event-source" "2.0.1"
-    "@types/websocket" "1.0.2"
-    abort-controller "3.0.0"
-    cross-fetch "3.1.4"
-    extract-files "9.0.0"
-    form-data "4.0.0"
-    graphql-ws "^4.4.1"
-    is-promise "4.0.0"
-    isomorphic-ws "4.0.1"
-    lodash "4.17.21"
-    meros "1.1.4"
-    subscriptions-transport-ws "^0.9.18"
-    sync-fetch "0.3.0"
-    tslib "~2.2.0"
-    valid-url "1.0.9"
-    ws "7.4.5"
-
 "@graphql-tools/url-loader@^7.0.11", "@graphql-tools/url-loader@^7.0.3", "@graphql-tools/url-loader@^7.1.0":
   version "7.2.0"
   resolved "https://registry.yarnpkg.com/@graphql-tools/url-loader/-/url-loader-7.2.0.tgz#f70f77b9a3cfb8de0460a05a93590d16a68af09a"
@@ -4354,15 +4278,6 @@
   dependencies:
     tslib "~2.3.0"
 
-"@graphql-tools/utils@^7.0.0", "@graphql-tools/utils@^7.1.2", "@graphql-tools/utils@^7.5.0", "@graphql-tools/utils@^7.7.0", "@graphql-tools/utils@^7.7.1", "@graphql-tools/utils@^7.8.1", "@graphql-tools/utils@^7.9.0":
-  version "7.10.0"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-7.10.0.tgz#07a4cb5d1bec1ff1dc1d47a935919ee6abd38699"
-  integrity sha512-d334r6bo9mxdSqZW6zWboEnnOOFRrAPVQJ7LkU8/6grglrbcu6WhwCLzHb90E94JI3TD3ricC3YGbUqIi9Xg0w==
-  dependencies:
-    "@ardatan/aggregate-error" "0.0.6"
-    camel-case "4.1.2"
-    tslib "~2.2.0"
-
 "@graphql-tools/wrap@8.1.1", "@graphql-tools/wrap@^8.1.0":
   version "8.1.1"
   resolved "https://registry.yarnpkg.com/@graphql-tools/wrap/-/wrap-8.1.1.tgz#7003033372d6ef984065028430429655614af899"
@@ -4374,17 +4289,6 @@
     tslib "~2.3.0"
     value-or-promise "1.0.10"
 
-"@graphql-tools/wrap@^7.0.4":
-  version "7.0.8"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/wrap/-/wrap-7.0.8.tgz#ad41e487135ca3ea1ae0ea04bb3f596177fb4f50"
-  integrity sha512-1NDUymworsOlb53Qfh7fonDi2STvqCtbeE68ntKY9K/Ju/be2ZNxrFSbrBHwnxWcN9PjISNnLcAyJ1L5tCUyhg==
-  dependencies:
-    "@graphql-tools/delegate" "^7.1.5"
-    "@graphql-tools/schema" "^7.1.5"
-    "@graphql-tools/utils" "^7.8.1"
-    tslib "~2.2.0"
-    value-or-promise "1.0.6"
-
 "@graphql-typed-document-node/core@^3.1.0", "@graphql-typed-document-node/core@^3.1.1":
   version "3.1.1"
   resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.1.1.tgz#076d78ce99822258cf813ecc1e7fa460fa74d052"
@@ -4395,24 +4299,33 @@
   resolved "https://registry.yarnpkg.com/@headlessui/vue/-/vue-1.4.0.tgz#a4a3f392d6e72923f101e307fcfa6c80c00ea446"
   integrity sha512-BBLDciyKiGK03whaSVkUacDY2Cd5AR05JCUPWQLvQ9HtjQc9tv5RyPpcdmoXJa+XWI10e3U1JxL+8FY7kJMcEQ==
 
-"@humanwhocodes/config-array@^0.11.14":
-  version "0.11.14"
-  resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.14.tgz#d78e481a039f7566ecc9660b4ea7fe6b1fec442b"
-  integrity sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==
+"@humanfs/core@^0.19.1":
+  version "0.19.1"
+  resolved "https://registry.yarnpkg.com/@humanfs/core/-/core-0.19.1.tgz#17c55ca7d426733fe3c561906b8173c336b40a77"
+  integrity sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==
+
+"@humanfs/node@^0.16.6":
+  version "0.16.6"
+  resolved "https://registry.yarnpkg.com/@humanfs/node/-/node-0.16.6.tgz#ee2a10eaabd1131987bf0488fd9b820174cd765e"
+  integrity sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==
   dependencies:
-    "@humanwhocodes/object-schema" "^2.0.2"
-    debug "^4.3.1"
-    minimatch "^3.0.5"
+    "@humanfs/core" "^0.19.1"
+    "@humanwhocodes/retry" "^0.3.0"
 
 "@humanwhocodes/module-importer@^1.0.1":
   version "1.0.1"
   resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c"
   integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==
 
-"@humanwhocodes/object-schema@^2.0.2":
-  version "2.0.3"
-  resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz#4a2868d75d6d6963e423bcf90b7fd1be343409d3"
-  integrity sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==
+"@humanwhocodes/retry@^0.3.0":
+  version "0.3.1"
+  resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.3.1.tgz#c72a5c76a9fbaf3488e231b13dc52c0da7bab42a"
+  integrity sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==
+
+"@humanwhocodes/retry@^0.4.1":
+  version "0.4.1"
+  resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.4.1.tgz#9a96ce501bc62df46c4031fbd970e3cc6b10f07b"
+  integrity sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==
 
 "@hutson/parse-repository-url@^3.0.0":
   version "3.0.2"
@@ -5130,11 +5043,6 @@
     lodash "^4.17.15"
     tmp-promise "^3.0.2"
 
-"@microsoft/fetch-event-source@2.0.1":
-  version "2.0.1"
-  resolved "https://registry.yarnpkg.com/@microsoft/fetch-event-source/-/fetch-event-source-2.0.1.tgz#9ceecc94b49fbaa15666e38ae8587f64acce007d"
-  integrity sha512-W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA==
-
 "@n1ru4l/graphql-live-query@0.8.1":
   version "0.8.1"
   resolved "https://registry.yarnpkg.com/@n1ru4l/graphql-live-query/-/graphql-live-query-0.8.1.tgz#2d6ca6157dafdc5d122a1aeb623b43e939c4b238"
@@ -5174,7 +5082,7 @@
   resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
   integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
 
-"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8":
+"@nodelib/fs.walk@^1.2.3":
   version "1.2.8"
   resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
   integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
@@ -8045,7 +7953,7 @@
   resolved "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-4.0.2.tgz#4117a7a378593a218e9d6f0ef44ce6d5d9edf7fa"
   integrity sha512-KbeHS/Y4R+k+5sWXEYzAZKuB1yQlZtEghuhRxrVRLaqhtoG5+26JwQsa4HyS3AWX8v1Uwukma5HheduUDskasA==
 
-"@types/json-schema@*", "@types/json-schema@^7.0.12", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9":
+"@types/json-schema@*", "@types/json-schema@^7.0.12", "@types/json-schema@^7.0.15", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9":
   version "7.0.15"
   resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841"
   integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
@@ -8642,13 +8550,6 @@
     tapable "^2.2.0"
     webpack "^5"
 
-"@types/websocket@1.0.2":
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/@types/websocket/-/websocket-1.0.2.tgz#d2855c6a312b7da73ed16ba6781815bf30c6187a"
-  integrity sha512-B5m9aq7cbbD/5/jThEr33nUY8WEfVi6A2YKCTOvw5Ldy7mtsOkqRvGjnzy6g7iMMDsgu7xREuCzqATLDLQVKcQ==
-  dependencies:
-    "@types/node" "*"
-
 "@types/websocket@1.0.4":
   version "1.0.4"
   resolved "https://registry.yarnpkg.com/@types/websocket/-/websocket-1.0.4.tgz#1dc497280d8049a5450854dd698ee7e6ea9e60b8"
@@ -8716,6 +8617,21 @@
     semver "^7.5.4"
     ts-api-utils "^1.0.1"
 
+"@typescript-eslint/eslint-plugin@8.20.0":
+  version "8.20.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.20.0.tgz#b47a398e0e551cb008c60190b804394e6852c863"
+  integrity sha512-naduuphVw5StFfqp4Gq4WhIBE2gN1GEmMUExpJYknZJdRnc+2gDzB8Z3+5+/Kv33hPQRDGzQO/0opHE72lZZ6A==
+  dependencies:
+    "@eslint-community/regexpp" "^4.10.0"
+    "@typescript-eslint/scope-manager" "8.20.0"
+    "@typescript-eslint/type-utils" "8.20.0"
+    "@typescript-eslint/utils" "8.20.0"
+    "@typescript-eslint/visitor-keys" "8.20.0"
+    graphemer "^1.4.0"
+    ignore "^5.3.1"
+    natural-compare "^1.4.0"
+    ts-api-utils "^2.0.0"
+
 "@typescript-eslint/parser@7.2.0":
   version "7.2.0"
   resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-7.2.0.tgz#44356312aea8852a3a82deebdacd52ba614ec07a"
@@ -8727,6 +8643,17 @@
     "@typescript-eslint/visitor-keys" "7.2.0"
     debug "^4.3.4"
 
+"@typescript-eslint/parser@8.20.0":
+  version "8.20.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.20.0.tgz#5caf2230a37094dc0e671cf836b96dd39b587ced"
+  integrity sha512-gKXG7A5HMyjDIedBi6bUrDcun8GIjnI8qOwVLiY3rx6T/sHP/19XLJOnIq/FgQvWLHja5JN/LSE7eklNBr612g==
+  dependencies:
+    "@typescript-eslint/scope-manager" "8.20.0"
+    "@typescript-eslint/types" "8.20.0"
+    "@typescript-eslint/typescript-estree" "8.20.0"
+    "@typescript-eslint/visitor-keys" "8.20.0"
+    debug "^4.3.4"
+
 "@typescript-eslint/scope-manager@7.2.0":
   version "7.2.0"
   resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-7.2.0.tgz#cfb437b09a84f95a0930a76b066e89e35d94e3da"
@@ -8735,6 +8662,14 @@
     "@typescript-eslint/types" "7.2.0"
     "@typescript-eslint/visitor-keys" "7.2.0"
 
+"@typescript-eslint/scope-manager@8.20.0":
+  version "8.20.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.20.0.tgz#aaf4198b509fb87a6527c02cfbfaf8901179e75c"
+  integrity sha512-J7+VkpeGzhOt3FeG1+SzhiMj9NzGD/M6KoGn9f4dbz3YzK9hvbhVTmLj/HiTp9DazIzJ8B4XcM80LrR9Dm1rJw==
+  dependencies:
+    "@typescript-eslint/types" "8.20.0"
+    "@typescript-eslint/visitor-keys" "8.20.0"
+
 "@typescript-eslint/type-utils@7.2.0":
   version "7.2.0"
   resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-7.2.0.tgz#7be5c30e9b4d49971b79095a1181324ef6089a19"
@@ -8745,11 +8680,26 @@
     debug "^4.3.4"
     ts-api-utils "^1.0.1"
 
+"@typescript-eslint/type-utils@8.20.0":
+  version "8.20.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.20.0.tgz#958171d86b213a3f32b5b16b91db267968a4ef19"
+  integrity sha512-bPC+j71GGvA7rVNAHAtOjbVXbLN5PkwqMvy1cwGeaxUoRQXVuKCebRoLzm+IPW/NtFFpstn1ummSIasD5t60GA==
+  dependencies:
+    "@typescript-eslint/typescript-estree" "8.20.0"
+    "@typescript-eslint/utils" "8.20.0"
+    debug "^4.3.4"
+    ts-api-utils "^2.0.0"
+
 "@typescript-eslint/types@7.2.0":
   version "7.2.0"
   resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-7.2.0.tgz#0feb685f16de320e8520f13cca30779c8b7c403f"
   integrity sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==
 
+"@typescript-eslint/types@8.20.0":
+  version "8.20.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.20.0.tgz#487de5314b5415dee075e95568b87a75a3e730cf"
+  integrity sha512-cqaMiY72CkP+2xZRrFt3ExRBu0WmVitN/rYPZErA80mHjHx/Svgp8yfbzkJmDoQ/whcytOPO9/IZXnOc+wigRA==
+
 "@typescript-eslint/typescript-estree@7.2.0":
   version "7.2.0"
   resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-7.2.0.tgz#5beda2876c4137f8440c5a84b4f0370828682556"
@@ -8764,6 +8714,20 @@
     semver "^7.5.4"
     ts-api-utils "^1.0.1"
 
+"@typescript-eslint/typescript-estree@8.20.0":
+  version "8.20.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.20.0.tgz#658cea07b7e5981f19bce5cf1662cb70ad59f26b"
+  integrity sha512-Y7ncuy78bJqHI35NwzWol8E0X7XkRVS4K4P4TCyzWkOJih5NDvtoRDW4Ba9YJJoB2igm9yXDdYI/+fkiiAxPzA==
+  dependencies:
+    "@typescript-eslint/types" "8.20.0"
+    "@typescript-eslint/visitor-keys" "8.20.0"
+    debug "^4.3.4"
+    fast-glob "^3.3.2"
+    is-glob "^4.0.3"
+    minimatch "^9.0.4"
+    semver "^7.6.0"
+    ts-api-utils "^2.0.0"
+
 "@typescript-eslint/utils@7.2.0":
   version "7.2.0"
   resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-7.2.0.tgz#fc8164be2f2a7068debb4556881acddbf0b7ce2a"
@@ -8777,6 +8741,16 @@
     "@typescript-eslint/typescript-estree" "7.2.0"
     semver "^7.5.4"
 
+"@typescript-eslint/utils@8.20.0":
+  version "8.20.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.20.0.tgz#53127ecd314b3b08836b4498b71cdb86f4ef3aa2"
+  integrity sha512-dq70RUw6UK9ei7vxc4KQtBRk7qkHZv447OUZ6RPQMQl71I3NZxQJX/f32Smr+iqWrB02pHKn2yAdHBb0KNrRMA==
+  dependencies:
+    "@eslint-community/eslint-utils" "^4.4.0"
+    "@typescript-eslint/scope-manager" "8.20.0"
+    "@typescript-eslint/types" "8.20.0"
+    "@typescript-eslint/typescript-estree" "8.20.0"
+
 "@typescript-eslint/visitor-keys@7.2.0":
   version "7.2.0"
   resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-7.2.0.tgz#5035f177752538a5750cca1af6044b633610bf9e"
@@ -8785,16 +8759,19 @@
     "@typescript-eslint/types" "7.2.0"
     eslint-visitor-keys "^3.4.1"
 
+"@typescript-eslint/visitor-keys@8.20.0":
+  version "8.20.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.20.0.tgz#2df6e24bc69084b81f06aaaa48d198b10d382bed"
+  integrity sha512-v/BpkeeYAsPkKCkR8BDwcno0llhzWVqPOamQrAEMdpZav2Y9OVjd9dwJyBLJWwf335B5DmlifECIkZRJCaGaHA==
+  dependencies:
+    "@typescript-eslint/types" "8.20.0"
+    eslint-visitor-keys "^4.2.0"
+
 "@ungap/promise-all-settled@1.1.2":
   version "1.1.2"
   resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44"
   integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==
 
-"@ungap/structured-clone@^1.2.0":
-  version "1.2.0"
-  resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406"
-  integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==
-
 "@urql/core@2.4.4", "@urql/core@>=2.3.0", "@urql/core@>=2.3.6", "@urql/core@^2.3.6":
   version "2.4.4"
   resolved "https://registry.yarnpkg.com/@urql/core/-/core-2.4.4.tgz#29f1d03cc439134259761e70a78ae20302c3d7fe"
@@ -9755,7 +9732,7 @@ acorn@^7.0.0, acorn@^7.1.1:
   resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
   integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
 
-acorn@^8.11.3, acorn@^8.12.1, acorn@^8.4.1, acorn@^8.5.0, acorn@^8.7.1, acorn@^8.8.2, acorn@^8.9.0:
+acorn@^8.11.3, acorn@^8.12.1, acorn@^8.14.0, acorn@^8.4.1, acorn@^8.5.0, acorn@^8.7.1, acorn@^8.8.2, acorn@^8.9.0:
   version "8.14.0"
   resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0"
   integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==
@@ -10291,13 +10268,13 @@ arr-union@^3.1.0:
   resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
   integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=
 
-array-buffer-byte-length@^1.0.0, array-buffer-byte-length@^1.0.1:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz#1e5583ec16763540a27ae52eed99ff899223568f"
-  integrity sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==
+array-buffer-byte-length@^1.0.0, array-buffer-byte-length@^1.0.1, array-buffer-byte-length@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz#384d12a37295aec3769ab022ad323a18a51ccf8b"
+  integrity sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==
   dependencies:
-    call-bind "^1.0.5"
-    is-array-buffer "^3.0.4"
+    call-bound "^1.0.3"
+    is-array-buffer "^3.0.5"
 
 array-differ@^3.0.0:
   version "3.0.0"
@@ -10324,7 +10301,7 @@ array-ify@^1.0.0:
   resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece"
   integrity sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=
 
-array-includes@^3.1.1, array-includes@^3.1.3, array-includes@^3.1.4, array-includes@^3.1.7:
+array-includes@^3.1.3, array-includes@^3.1.8:
   version "3.1.8"
   resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.8.tgz#5e370cbe172fdd5dd6530c1d4aadda25281ba97d"
   integrity sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==
@@ -10400,10 +10377,10 @@ array.prototype.find@^2.1.1:
     define-properties "^1.1.3"
     es-abstract "^1.17.4"
 
-array.prototype.findlastindex@^1.2.3:
+array.prototype.findlast@^1.2.5:
   version "1.2.5"
-  resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz#8c35a755c72908719453f87145ca011e39334d0d"
-  integrity sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==
+  resolved "https://registry.yarnpkg.com/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz#3e4fbcb30a15a7f5bf64cf2faae22d139c2e4904"
+  integrity sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==
   dependencies:
     call-bind "^1.0.7"
     define-properties "^1.2.1"
@@ -10412,25 +10389,26 @@ array.prototype.findlastindex@^1.2.3:
     es-object-atoms "^1.0.0"
     es-shim-unscopables "^1.0.2"
 
-array.prototype.flat@^1.2.5, array.prototype.flat@^1.3.2:
-  version "1.3.2"
-  resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz#1476217df8cff17d72ee8f3ba06738db5b387d18"
-  integrity sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==
+array.prototype.flatmap@^1.3.3:
+  version "1.3.3"
+  resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz#712cc792ae70370ae40586264629e33aab5dd38b"
+  integrity sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==
   dependencies:
-    call-bind "^1.0.2"
-    define-properties "^1.2.0"
-    es-abstract "^1.22.1"
-    es-shim-unscopables "^1.0.0"
+    call-bind "^1.0.8"
+    define-properties "^1.2.1"
+    es-abstract "^1.23.5"
+    es-shim-unscopables "^1.0.2"
 
-array.prototype.flatmap@^1.2.3, array.prototype.flatmap@^1.3.2:
-  version "1.3.2"
-  resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz#c9a7c6831db8e719d6ce639190146c24bbd3e527"
-  integrity sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==
+array.prototype.tosorted@^1.1.4:
+  version "1.1.4"
+  resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz#fe954678ff53034e717ea3352a03f0b0b86f7ffc"
+  integrity sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==
   dependencies:
-    call-bind "^1.0.2"
-    define-properties "^1.2.0"
-    es-abstract "^1.22.1"
-    es-shim-unscopables "^1.0.0"
+    call-bind "^1.0.7"
+    define-properties "^1.2.1"
+    es-abstract "^1.23.3"
+    es-errors "^1.3.0"
+    es-shim-unscopables "^1.0.2"
 
 arraybuffer-loader@1.0.8:
   version "1.0.8"
@@ -10439,19 +10417,18 @@ arraybuffer-loader@1.0.8:
   dependencies:
     loader-utils "^1.1.0"
 
-arraybuffer.prototype.slice@^1.0.3:
-  version "1.0.3"
-  resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz#097972f4255e41bc3425e37dc3f6421cf9aefde6"
-  integrity sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==
+arraybuffer.prototype.slice@^1.0.4:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz#9d760d84dbdd06d0cbf92c8849615a1a7ab3183c"
+  integrity sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==
   dependencies:
     array-buffer-byte-length "^1.0.1"
-    call-bind "^1.0.5"
+    call-bind "^1.0.8"
     define-properties "^1.2.1"
-    es-abstract "^1.22.3"
-    es-errors "^1.2.1"
-    get-intrinsic "^1.2.3"
+    es-abstract "^1.23.5"
+    es-errors "^1.3.0"
+    get-intrinsic "^1.2.6"
     is-array-buffer "^3.0.4"
-    is-shared-array-buffer "^1.0.2"
 
 arraybuffer.slice@~0.0.7:
   version "0.0.7"
@@ -11750,16 +11727,31 @@ cachedir@2.3.0, cachedir@^2.3.0:
   resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.3.0.tgz#0c75892a052198f0b21c7c1804d8331edfcae0e8"
   integrity sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==
 
-call-bind@^1.0.0, call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7:
-  version "1.0.7"
-  resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9"
-  integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==
+call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz#32e5892e6361b29b0b545ba6f7763378daca2840"
+  integrity sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==
   dependencies:
-    es-define-property "^1.0.0"
     es-errors "^1.3.0"
     function-bind "^1.1.2"
+
+call-bind@^1.0.0, call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.7, call-bind@^1.0.8:
+  version "1.0.8"
+  resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz#0736a9660f537e3388826f440d5ec45f744eaa4c"
+  integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==
+  dependencies:
+    call-bind-apply-helpers "^1.0.0"
+    es-define-property "^1.0.0"
     get-intrinsic "^1.2.4"
-    set-function-length "^1.2.1"
+    set-function-length "^1.2.2"
+
+call-bound@^1.0.2, call-bound@^1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.3.tgz#41cfd032b593e39176a71533ab4f384aa04fd681"
+  integrity sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==
+  dependencies:
+    call-bind-apply-helpers "^1.0.1"
+    get-intrinsic "^1.2.6"
 
 call-me-maybe@^1.0.1:
   version "1.0.2"
@@ -11776,14 +11768,6 @@ callsites@^3.0.0:
   resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
   integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
 
-camel-case@4.1.2, camel-case@^4.1.1, camel-case@^4.1.2:
-  version "4.1.2"
-  resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a"
-  integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==
-  dependencies:
-    pascal-case "^3.1.2"
-    tslib "^2.0.3"
-
 camel-case@^3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73"
@@ -11792,6 +11776,14 @@ camel-case@^3.0.0:
     no-case "^2.2.0"
     upper-case "^1.1.1"
 
+camel-case@^4.1.1, camel-case@^4.1.2:
+  version "4.1.2"
+  resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a"
+  integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==
+  dependencies:
+    pascal-case "^3.1.2"
+    tslib "^2.0.3"
+
 camelcase-css@^2.0.1:
   version "2.0.1"
   resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5"
@@ -13467,10 +13459,10 @@ cross-spawn@^6.0.0, cross-spawn@^6.0.5:
     shebang-command "^1.2.0"
     which "^1.2.9"
 
-cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
-  version "7.0.3"
-  resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
-  integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
+cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.3, cross-spawn@^7.0.6:
+  version "7.0.6"
+  resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f"
+  integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==
   dependencies:
     path-key "^3.1.0"
     shebang-command "^2.0.0"
@@ -13732,30 +13724,30 @@ data-uri-to-buffer@^5.0.1:
   resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-5.0.1.tgz#db89a9e279c2ffe74f50637a59a32fb23b3e4d7c"
   integrity sha512-a9l6T1qqDogvvnw0nKlfZzqsyikEBZBClF39V3TFoKhDtGBqHu2HkuomJc02j5zft8zrUaXEuoicLeW54RkzPg==
 
-data-view-buffer@^1.0.1:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.1.tgz#8ea6326efec17a2e42620696e671d7d5a8bc66b2"
-  integrity sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==
+data-view-buffer@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.2.tgz#211a03ba95ecaf7798a8c7198d79536211f88570"
+  integrity sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==
   dependencies:
-    call-bind "^1.0.6"
+    call-bound "^1.0.3"
     es-errors "^1.3.0"
-    is-data-view "^1.0.1"
+    is-data-view "^1.0.2"
 
-data-view-byte-length@^1.0.1:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz#90721ca95ff280677eb793749fce1011347669e2"
-  integrity sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==
+data-view-byte-length@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz#9e80f7ca52453ce3e93d25a35318767ea7704735"
+  integrity sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==
   dependencies:
-    call-bind "^1.0.7"
+    call-bound "^1.0.3"
     es-errors "^1.3.0"
-    is-data-view "^1.0.1"
+    is-data-view "^1.0.2"
 
-data-view-byte-offset@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz#5e0bbfb4828ed2d1b9b400cd8a7d119bca0ff18a"
-  integrity sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==
+data-view-byte-offset@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz#068307f9b71ab76dbbe10291389e020856606191"
+  integrity sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==
   dependencies:
-    call-bind "^1.0.6"
+    call-bound "^1.0.2"
     es-errors "^1.3.0"
     is-data-view "^1.0.1"
 
@@ -13804,7 +13796,7 @@ debounce@^1.2.0:
   resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.1.tgz#38881d8f4166a5c5848020c11827b834bcb3e0a5"
   integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==
 
-debug@2, debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9:
+debug@2, debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8:
   version "2.6.9"
   resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
   integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
@@ -14090,7 +14082,7 @@ define-lazy-prop@^3.0.0:
   resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz#dbb19adfb746d7fc6d734a06b72f4a00d021255f"
   integrity sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==
 
-define-properties@^1.1.2, define-properties@^1.1.3, define-properties@^1.2.0, define-properties@^1.2.1:
+define-properties@^1.1.2, define-properties@^1.1.3, define-properties@^1.2.1:
   version "1.2.1"
   resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c"
   integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==
@@ -14257,11 +14249,6 @@ detect-libc@^2.0.0, detect-libc@^2.0.1:
   resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.2.tgz#8ccf2ba9315350e1241b88d0ac3b0e1fbd99605d"
   integrity sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==
 
-detect-newline@3.1.0:
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651"
-  integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==
-
 detect-node-es@^1.0.0:
   version "1.0.0"
   resolved "https://registry.yarnpkg.com/detect-node-es/-/detect-node-es-1.0.0.tgz#c0318b9e539a5256ca780dd9575c9345af05b8ed"
@@ -14307,11 +14294,6 @@ didyoumean@^1.2.2:
   resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037"
   integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==
 
-diff-match-patch@^1.0.4:
-  version "1.0.5"
-  resolved "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.5.tgz#abb584d5f10cd1196dfc55aa03701592ae3f7b37"
-  integrity sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==
-
 diff-sequences@^29.6.3:
   version "29.6.3"
   resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.6.3.tgz#4deaf894d11407c51efc8418012f9e70b84ea921"
@@ -14651,6 +14633,15 @@ dtslint@4.2.1:
     tsutils "^2.29.0"
     yargs "^15.1.0"
 
+dunder-proto@^1.0.0, dunder-proto@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz#d7ae667e1dc83482f8b70fd0f6eefc50da30f58a"
+  integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==
+  dependencies:
+    call-bind-apply-helpers "^1.0.1"
+    es-errors "^1.3.0"
+    gopd "^1.2.0"
+
 duplexer2@~0.1.0:
   version "0.1.4"
   resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1"
@@ -15162,66 +15153,69 @@ errorhandler@1.5.1:
     accepts "~1.3.7"
     escape-html "~1.0.3"
 
-es-abstract@^1.17.4, es-abstract@^1.18.0-next.2, es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23.2:
-  version "1.23.3"
-  resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.3.tgz#8f0c5a35cd215312573c5a27c87dfd6c881a0aa0"
-  integrity sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==
+es-abstract@^1.17.4, es-abstract@^1.17.5, es-abstract@^1.18.0-next.2, es-abstract@^1.23.2, es-abstract@^1.23.3, es-abstract@^1.23.5, es-abstract@^1.23.6, es-abstract@^1.23.9:
+  version "1.23.9"
+  resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.9.tgz#5b45994b7de78dada5c1bebf1379646b32b9d606"
+  integrity sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==
   dependencies:
-    array-buffer-byte-length "^1.0.1"
-    arraybuffer.prototype.slice "^1.0.3"
+    array-buffer-byte-length "^1.0.2"
+    arraybuffer.prototype.slice "^1.0.4"
     available-typed-arrays "^1.0.7"
-    call-bind "^1.0.7"
-    data-view-buffer "^1.0.1"
-    data-view-byte-length "^1.0.1"
-    data-view-byte-offset "^1.0.0"
-    es-define-property "^1.0.0"
+    call-bind "^1.0.8"
+    call-bound "^1.0.3"
+    data-view-buffer "^1.0.2"
+    data-view-byte-length "^1.0.2"
+    data-view-byte-offset "^1.0.1"
+    es-define-property "^1.0.1"
     es-errors "^1.3.0"
     es-object-atoms "^1.0.0"
-    es-set-tostringtag "^2.0.3"
-    es-to-primitive "^1.2.1"
-    function.prototype.name "^1.1.6"
-    get-intrinsic "^1.2.4"
-    get-symbol-description "^1.0.2"
-    globalthis "^1.0.3"
-    gopd "^1.0.1"
+    es-set-tostringtag "^2.1.0"
+    es-to-primitive "^1.3.0"
+    function.prototype.name "^1.1.8"
+    get-intrinsic "^1.2.7"
+    get-proto "^1.0.0"
+    get-symbol-description "^1.1.0"
+    globalthis "^1.0.4"
+    gopd "^1.2.0"
     has-property-descriptors "^1.0.2"
-    has-proto "^1.0.3"
-    has-symbols "^1.0.3"
+    has-proto "^1.2.0"
+    has-symbols "^1.1.0"
     hasown "^2.0.2"
-    internal-slot "^1.0.7"
-    is-array-buffer "^3.0.4"
+    internal-slot "^1.1.0"
+    is-array-buffer "^3.0.5"
     is-callable "^1.2.7"
-    is-data-view "^1.0.1"
-    is-negative-zero "^2.0.3"
-    is-regex "^1.1.4"
-    is-shared-array-buffer "^1.0.3"
-    is-string "^1.0.7"
-    is-typed-array "^1.1.13"
-    is-weakref "^1.0.2"
-    object-inspect "^1.13.1"
+    is-data-view "^1.0.2"
+    is-regex "^1.2.1"
+    is-shared-array-buffer "^1.0.4"
+    is-string "^1.1.1"
+    is-typed-array "^1.1.15"
+    is-weakref "^1.1.0"
+    math-intrinsics "^1.1.0"
+    object-inspect "^1.13.3"
     object-keys "^1.1.1"
-    object.assign "^4.1.5"
-    regexp.prototype.flags "^1.5.2"
-    safe-array-concat "^1.1.2"
-    safe-regex-test "^1.0.3"
-    string.prototype.trim "^1.2.9"
-    string.prototype.trimend "^1.0.8"
+    object.assign "^4.1.7"
+    own-keys "^1.0.1"
+    regexp.prototype.flags "^1.5.3"
+    safe-array-concat "^1.1.3"
+    safe-push-apply "^1.0.0"
+    safe-regex-test "^1.1.0"
+    set-proto "^1.0.0"
+    string.prototype.trim "^1.2.10"
+    string.prototype.trimend "^1.0.9"
     string.prototype.trimstart "^1.0.8"
-    typed-array-buffer "^1.0.2"
-    typed-array-byte-length "^1.0.1"
-    typed-array-byte-offset "^1.0.2"
-    typed-array-length "^1.0.6"
-    unbox-primitive "^1.0.2"
-    which-typed-array "^1.1.15"
-
-es-define-property@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845"
-  integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==
-  dependencies:
-    get-intrinsic "^1.2.4"
+    typed-array-buffer "^1.0.3"
+    typed-array-byte-length "^1.0.3"
+    typed-array-byte-offset "^1.0.4"
+    typed-array-length "^1.0.7"
+    unbox-primitive "^1.1.0"
+    which-typed-array "^1.1.18"
+
+es-define-property@^1.0.0, es-define-property@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa"
+  integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==
 
-es-errors@^1.2.1, es-errors@^1.3.0:
+es-errors@^1.3.0:
   version "1.3.0"
   resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f"
   integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==
@@ -15241,6 +15235,28 @@ es-get-iterator@^1.1.3:
     isarray "^2.0.5"
     stop-iteration-iterator "^1.0.0"
 
+es-iterator-helpers@^1.2.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.2.1.tgz#d1dd0f58129054c0ad922e6a9a1e65eef435fe75"
+  integrity sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==
+  dependencies:
+    call-bind "^1.0.8"
+    call-bound "^1.0.3"
+    define-properties "^1.2.1"
+    es-abstract "^1.23.6"
+    es-errors "^1.3.0"
+    es-set-tostringtag "^2.0.3"
+    function-bind "^1.1.2"
+    get-intrinsic "^1.2.6"
+    globalthis "^1.0.4"
+    gopd "^1.2.0"
+    has-property-descriptors "^1.0.2"
+    has-proto "^1.2.0"
+    has-symbols "^1.1.0"
+    internal-slot "^1.1.0"
+    iterator.prototype "^1.1.4"
+    safe-array-concat "^1.1.3"
+
 es-module-lexer@^0.9.0:
   version "0.9.3"
   resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz#6f13db00cc38417137daf74366f535c8eb438f19"
@@ -15258,30 +15274,31 @@ es-object-atoms@^1.0.0:
   dependencies:
     es-errors "^1.3.0"
 
-es-set-tostringtag@^2.0.3:
-  version "2.0.3"
-  resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz#8bb60f0a440c2e4281962428438d58545af39777"
-  integrity sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==
+es-set-tostringtag@^2.0.3, es-set-tostringtag@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz#f31dbbe0c183b00a6d26eb6325c810c0fd18bd4d"
+  integrity sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==
   dependencies:
-    get-intrinsic "^1.2.4"
+    es-errors "^1.3.0"
+    get-intrinsic "^1.2.6"
     has-tostringtag "^1.0.2"
-    hasown "^2.0.1"
+    hasown "^2.0.2"
 
-es-shim-unscopables@^1.0.0, es-shim-unscopables@^1.0.2:
+es-shim-unscopables@^1.0.2:
   version "1.0.2"
   resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz#1f6942e71ecc7835ed1c8a83006d8771a63a3763"
   integrity sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==
   dependencies:
     hasown "^2.0.0"
 
-es-to-primitive@^1.2.1:
-  version "1.2.1"
-  resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
-  integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
+es-to-primitive@^1.3.0:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.3.0.tgz#96c89c82cc49fd8794a24835ba3e1ff87f214e18"
+  integrity sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==
   dependencies:
-    is-callable "^1.1.4"
-    is-date-object "^1.0.1"
-    is-symbol "^1.0.2"
+    is-callable "^1.2.7"
+    is-date-object "^1.0.5"
+    is-symbol "^1.0.4"
 
 es5-ext@^0.10.35, es5-ext@^0.10.46, es5-ext@^0.10.50:
   version "0.10.53"
@@ -15642,144 +15659,71 @@ escodegen@^2.1.0:
   optionalDependencies:
     source-map "~0.6.1"
 
-eslint-import-resolver-node@^0.3.6, eslint-import-resolver-node@^0.3.9:
-  version "0.3.9"
-  resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz#d4eaac52b8a2e7c3cd1903eb00f7e053356118ac"
-  integrity sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==
-  dependencies:
-    debug "^3.2.7"
-    is-core-module "^2.13.0"
-    resolve "^1.22.4"
-
-eslint-module-utils@^2.1.1, eslint-module-utils@^2.7.2, eslint-module-utils@^2.8.0:
+eslint-module-utils@^2.1.1:
   version "2.8.1"
   resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz#52f2404300c3bd33deece9d7372fb337cc1d7c34"
   integrity sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==
   dependencies:
     debug "^3.2.7"
 
-eslint-plugin-cypress@3.5.0:
-  version "3.5.0"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-cypress/-/eslint-plugin-cypress-3.5.0.tgz#380ef5049ad80ebeca923db69e4aa96e72fcd893"
-  integrity sha512-JZQ6XnBTNI8h1B9M7wJSFzc48SYbh7VMMKaNTQOFa3BQlnmXPrVc4PKen8R+fpv6VleiPeej6VxloGb42zdRvw==
-  dependencies:
-    globals "^13.20.0"
-
-eslint-plugin-graphql@4.0.0:
-  version "4.0.0"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-graphql/-/eslint-plugin-graphql-4.0.0.tgz#d238ff2baee4d632cfcbe787a7a70a1f50428358"
-  integrity sha512-d5tQm24YkVvCEk29ZR5ScsgXqAGCjKlMS8lx3mS7FS/EKsWbkvXQImpvic03EpMIvNTBW5e+2xnHzXB/VHNZJw==
-  dependencies:
-    "@babel/runtime" "^7.10.0"
-    graphql-config "^3.0.2"
-    lodash.flatten "^4.4.0"
-    lodash.without "^4.4.0"
-
-eslint-plugin-import@2.25.4:
-  version "2.25.4"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.25.4.tgz#322f3f916a4e9e991ac7af32032c25ce313209f1"
-  integrity sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==
-  dependencies:
-    array-includes "^3.1.4"
-    array.prototype.flat "^1.2.5"
-    debug "^2.6.9"
-    doctrine "^2.1.0"
-    eslint-import-resolver-node "^0.3.6"
-    eslint-module-utils "^2.7.2"
-    has "^1.0.3"
-    is-core-module "^2.8.0"
-    is-glob "^4.0.3"
-    minimatch "^3.0.4"
-    object.values "^1.1.5"
-    resolve "^1.20.0"
-    tsconfig-paths "^3.12.0"
-
-eslint-plugin-import@^2.29.1:
-  version "2.29.1"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz#d45b37b5ef5901d639c15270d74d46d161150643"
-  integrity sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==
-  dependencies:
-    array-includes "^3.1.7"
-    array.prototype.findlastindex "^1.2.3"
-    array.prototype.flat "^1.3.2"
-    array.prototype.flatmap "^1.3.2"
-    debug "^3.2.7"
-    doctrine "^2.1.0"
-    eslint-import-resolver-node "^0.3.9"
-    eslint-module-utils "^2.8.0"
-    hasown "^2.0.0"
-    is-core-module "^2.13.1"
-    is-glob "^4.0.3"
-    minimatch "^3.1.2"
-    object.fromentries "^2.0.7"
-    object.groupby "^1.0.1"
-    object.values "^1.1.7"
-    semver "^6.3.1"
-    tsconfig-paths "^3.15.0"
-
-eslint-plugin-json-format@2.0.1, eslint-plugin-json-format@^2.0.0:
-  version "2.0.1"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-json-format/-/eslint-plugin-json-format-2.0.1.tgz#31c6ef89e8210ba2e262381eb5d26d24cb74bc67"
-  integrity sha512-eWT0sNqIEYzKqbej2dvz+/oQ4JQxthE3i+izjInIdfbsPfVgBtiWbmagkgKStje0LJqo9FATx1LWl6xcuxqsBQ==
+eslint-plugin-cypress@^4.1.0:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-cypress/-/eslint-plugin-cypress-4.1.0.tgz#11178fd250d437e2ec57bf24b8a9058b356f8cac"
+  integrity sha512-JhqkMY02mw74USwK9OFhectx3YSj6Co1NgWBxlGdKvlqiAp9vdEuQqt33DKGQFvvGS/NWtduuhWXWNnU29xDSg==
   dependencies:
-    common-tags "^1.8.0"
-    debug "^4.1.1"
-    diff-match-patch "^1.0.4"
-    json-fixer "^1.3.2"
-    line-column "^1.0.2"
-    lodash "^4.17.15"
-    minimatch "^3.0.4"
-    sort-package-json "^1.22.1"
+    globals "^15.11.0"
 
-eslint-plugin-mocha@8.2.0, eslint-plugin-mocha@^8.2.0:
-  version "8.2.0"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-mocha/-/eslint-plugin-mocha-8.2.0.tgz#1d9724edcef37583921ef853494200c2b8a3730d"
-  integrity sha512-8oOR47Ejt+YJPNQzedbiklDqS1zurEaNrxXpRs+Uk4DMDPVmKNagShFeUaYsfvWP55AhI+P1non5QZAHV6K78A==
+eslint-plugin-mocha@^10.5.0:
+  version "10.5.0"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-mocha/-/eslint-plugin-mocha-10.5.0.tgz#0aca8d709e7cddef566e0dc252f6b02e307a2b7e"
+  integrity sha512-F2ALmQVPT1GoP27O1JTZGrV9Pqg8k79OeIuvw63UxMtQKREZtmkK1NFgkZQ2TW7L2JSSFKHFPTtHu5z8R9QNRw==
   dependencies:
-    eslint-utils "^2.1.0"
-    ramda "^0.27.1"
-
-eslint-plugin-promise@^4.2.1:
-  version "4.3.1"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.3.1.tgz#61485df2a359e03149fdafc0a68b0e030ad2ac45"
-  integrity sha512-bY2sGqyptzFBDLh/GMbAxfdJC+b0f23ME63FOE4+Jao0oZ3E1LEwFtWJX/1pGMJLiTtrSSern2CRM/g+dfc0eQ==
-
-eslint-plugin-react-hooks@4.2.0:
-  version "4.2.0"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz#8c229c268d468956334c943bb45fc860280f5556"
-  integrity sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==
+    eslint-utils "^3.0.0"
+    globals "^13.24.0"
+    rambda "^7.4.0"
 
-eslint-plugin-react@7.22.0:
-  version "7.22.0"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.22.0.tgz#3d1c542d1d3169c45421c1215d9470e341707269"
-  integrity sha512-p30tuX3VS+NWv9nQot9xIGAHBXR0+xJVaZriEsHoJrASGCJZDJ8JLNM0YqKqI0AKm6Uxaa1VUHoNEibxRCMQHA==
-  dependencies:
-    array-includes "^3.1.1"
-    array.prototype.flatmap "^1.2.3"
+eslint-plugin-react-hooks@^5.1.0:
+  version "5.1.0"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.1.0.tgz#3d34e37d5770866c34b87d5b499f5f0b53bf0854"
+  integrity sha512-mpJRtPgHN2tNAvZ35AMfqeB3Xqeo273QxrHJsbBEPWODRM4r0yB6jfoROqKEYrOn27UtRPpcpHc2UqyBSuUNTw==
+
+eslint-plugin-react@^7.37.4:
+  version "7.37.4"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.37.4.tgz#1b6c80b6175b6ae4b26055ae4d55d04c414c7181"
+  integrity sha512-BGP0jRmfYyvOyvMoRX/uoUeW+GqNj9y16bPQzqAHf3AYII/tDs+jMN0dBVkl88/OZwNGwrVFxE7riHsXVfy/LQ==
+  dependencies:
+    array-includes "^3.1.8"
+    array.prototype.findlast "^1.2.5"
+    array.prototype.flatmap "^1.3.3"
+    array.prototype.tosorted "^1.1.4"
     doctrine "^2.1.0"
-    has "^1.0.3"
+    es-iterator-helpers "^1.2.1"
+    estraverse "^5.3.0"
+    hasown "^2.0.2"
     jsx-ast-utils "^2.4.1 || ^3.0.0"
-    object.entries "^1.1.2"
-    object.fromentries "^2.0.2"
-    object.values "^1.1.1"
-    prop-types "^15.7.2"
-    resolve "^1.18.1"
-    string.prototype.matchall "^4.0.2"
+    minimatch "^3.1.2"
+    object.entries "^1.1.8"
+    object.fromentries "^2.0.8"
+    object.values "^1.2.1"
+    prop-types "^15.8.1"
+    resolve "^2.0.0-next.5"
+    semver "^6.3.1"
+    string.prototype.matchall "^4.0.12"
+    string.prototype.repeat "^1.0.0"
 
-eslint-plugin-vue@7.18.0:
-  version "7.18.0"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-7.18.0.tgz#02a452142330c7f27c242db21a1b9e25238540f6"
-  integrity sha512-ceDXlXYMMPMSXw7tdKUR42w9jlzthJGJ3Kvm3YrZ0zuQfvAySNxe8sm6VHuksBW0+060GzYXhHJG6IHVOfF83Q==
+eslint-plugin-vue@^9.32.0:
+  version "9.32.0"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.32.0.tgz#2b558e827886b567dfaa156cc1cad0f596461fab"
+  integrity sha512-b/Y05HYmnB/32wqVcjxjHZzNpwxj1onBOvqW89W+V+XNG1dRuaFbNd3vT9CLbr2LXjEoq+3vn8DanWf7XU22Ug==
   dependencies:
-    eslint-utils "^2.1.0"
+    "@eslint-community/eslint-utils" "^4.4.0"
+    globals "^13.24.0"
     natural-compare "^1.4.0"
-    semver "^6.3.0"
-    vue-eslint-parser "^7.10.0"
-
-eslint-rule-composer@^0.3.0:
-  version "0.3.0"
-  resolved "https://registry.yarnpkg.com/eslint-rule-composer/-/eslint-rule-composer-0.3.0.tgz#79320c927b0c5c0d3d3d2b76c8b4a488f25bbaf9"
-  integrity sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==
+    nth-check "^2.1.1"
+    postcss-selector-parser "^6.0.15"
+    semver "^7.6.3"
+    vue-eslint-parser "^9.4.3"
+    xml-name-validator "^4.0.0"
 
 eslint-scope@5.1.1, eslint-scope@^5.1.1:
   version "5.1.1"
@@ -15797,7 +15741,7 @@ eslint-scope@^4.0.3:
     esrecurse "^4.1.0"
     estraverse "^4.1.1"
 
-eslint-scope@^7.2.2:
+eslint-scope@^7.1.1:
   version "7.2.2"
   resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f"
   integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==
@@ -15805,77 +15749,95 @@ eslint-scope@^7.2.2:
     esrecurse "^4.3.0"
     estraverse "^5.2.0"
 
-eslint-utils@^2.1.0:
-  version "2.1.0"
-  resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27"
-  integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==
+eslint-scope@^8.2.0:
+  version "8.2.0"
+  resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-8.2.0.tgz#377aa6f1cb5dc7592cfd0b7f892fd0cf352ce442"
+  integrity sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==
   dependencies:
-    eslint-visitor-keys "^1.1.0"
+    esrecurse "^4.3.0"
+    estraverse "^5.2.0"
 
-eslint-visitor-keys@^1.1.0:
+eslint-utils@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
+  integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
+  dependencies:
+    eslint-visitor-keys "^2.0.0"
+
+eslint-visitor-keys@^1.1.0:
   version "1.3.0"
   resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
   integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
 
-eslint-visitor-keys@^2.1.0:
+eslint-visitor-keys@^2.0.0, eslint-visitor-keys@^2.1.0:
   version "2.1.0"
   resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
   integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
 
-eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3:
+eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1:
   version "3.4.3"
   resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800"
   integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==
 
-eslint@^8.56.0:
-  version "8.57.0"
-  resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.57.0.tgz#c786a6fd0e0b68941aaf624596fb987089195668"
-  integrity sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==
+eslint-visitor-keys@^4.2.0:
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz#687bacb2af884fcdda8a6e7d65c606f46a14cd45"
+  integrity sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==
+
+eslint@^9.18.0:
+  version "9.18.0"
+  resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.18.0.tgz#c95b24de1183e865de19f607fda6518b54827850"
+  integrity sha512-+waTfRWQlSbpt3KWE+CjrPPYnbq9kfZIYUqapc0uBXyjTp8aYXZDsUH16m39Ryq3NjAVP4tjuF7KaukeqoCoaA==
   dependencies:
     "@eslint-community/eslint-utils" "^4.2.0"
-    "@eslint-community/regexpp" "^4.6.1"
-    "@eslint/eslintrc" "^2.1.4"
-    "@eslint/js" "8.57.0"
-    "@humanwhocodes/config-array" "^0.11.14"
+    "@eslint-community/regexpp" "^4.12.1"
+    "@eslint/config-array" "^0.19.0"
+    "@eslint/core" "^0.10.0"
+    "@eslint/eslintrc" "^3.2.0"
+    "@eslint/js" "9.18.0"
+    "@eslint/plugin-kit" "^0.2.5"
+    "@humanfs/node" "^0.16.6"
     "@humanwhocodes/module-importer" "^1.0.1"
-    "@nodelib/fs.walk" "^1.2.8"
-    "@ungap/structured-clone" "^1.2.0"
+    "@humanwhocodes/retry" "^0.4.1"
+    "@types/estree" "^1.0.6"
+    "@types/json-schema" "^7.0.15"
     ajv "^6.12.4"
     chalk "^4.0.0"
-    cross-spawn "^7.0.2"
+    cross-spawn "^7.0.6"
     debug "^4.3.2"
-    doctrine "^3.0.0"
     escape-string-regexp "^4.0.0"
-    eslint-scope "^7.2.2"
-    eslint-visitor-keys "^3.4.3"
-    espree "^9.6.1"
-    esquery "^1.4.2"
+    eslint-scope "^8.2.0"
+    eslint-visitor-keys "^4.2.0"
+    espree "^10.3.0"
+    esquery "^1.5.0"
     esutils "^2.0.2"
     fast-deep-equal "^3.1.3"
-    file-entry-cache "^6.0.1"
+    file-entry-cache "^8.0.0"
     find-up "^5.0.0"
     glob-parent "^6.0.2"
-    globals "^13.19.0"
-    graphemer "^1.4.0"
     ignore "^5.2.0"
     imurmurhash "^0.1.4"
     is-glob "^4.0.0"
-    is-path-inside "^3.0.3"
-    js-yaml "^4.1.0"
     json-stable-stringify-without-jsonify "^1.0.1"
-    levn "^0.4.1"
     lodash.merge "^4.6.2"
     minimatch "^3.1.2"
     natural-compare "^1.4.0"
     optionator "^0.9.3"
-    strip-ansi "^6.0.1"
-    text-table "^0.2.0"
 
 esm-env@^1.2.1:
   version "1.2.1"
   resolved "https://registry.npmjs.org/esm-env/-/esm-env-1.2.1.tgz#34c2a0ba60582948afbe7bd779bc66f9d3aece7e"
   integrity sha512-U9JedYYjCnadUlXk7e1Kr+aENQhtUaoaV9+gZm1T8LC/YBAPJx3NSPIAurFOC0U5vrdSevnUJS2/wUVxGwPhng==
 
+espree@^10.0.1, espree@^10.3.0:
+  version "10.3.0"
+  resolved "https://registry.yarnpkg.com/espree/-/espree-10.3.0.tgz#29267cf5b0cb98735b65e64ba07e0ed49d1eed8a"
+  integrity sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==
+  dependencies:
+    acorn "^8.14.0"
+    acorn-jsx "^5.3.2"
+    eslint-visitor-keys "^4.2.0"
+
 espree@^6.2.1:
   version "6.2.1"
   resolved "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz#77fc72e1fd744a2052c20f38a5b575832e82734a"
@@ -15885,7 +15847,7 @@ espree@^6.2.1:
     acorn-jsx "^5.2.0"
     eslint-visitor-keys "^1.1.0"
 
-espree@^9.0.0, espree@^9.6.0, espree@^9.6.1:
+espree@^9.0.0, espree@^9.3.1:
   version "9.6.1"
   resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f"
   integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==
@@ -15906,10 +15868,10 @@ esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0:
   resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
   integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
 
-esquery@^1.4.0, esquery@^1.4.2:
-  version "1.5.0"
-  resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b"
-  integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==
+esquery@^1.4.0, esquery@^1.5.0:
+  version "1.6.0"
+  resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz#91419234f804d852a82dceec3e16cdc22cf9dae7"
+  integrity sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==
   dependencies:
     estraverse "^5.1.0"
 
@@ -15933,7 +15895,7 @@ estraverse@^4.1.1:
   resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
   integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
 
-estraverse@^5.1.0, estraverse@^5.2.0:
+estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0:
   version "5.3.0"
   resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
   integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
@@ -16436,7 +16398,7 @@ extract-files@11.0.0:
   resolved "https://registry.yarnpkg.com/extract-files/-/extract-files-11.0.0.tgz#b72d428712f787eef1f5193aff8ab5351ca8469a"
   integrity sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==
 
-extract-files@9.0.0, extract-files@^9.0.0:
+extract-files@^9.0.0:
   version "9.0.0"
   resolved "https://registry.yarnpkg.com/extract-files/-/extract-files-9.0.0.tgz#8a7744f2437f81f5ed3250ed9f1550de902fe54a"
   integrity sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==
@@ -16489,7 +16451,7 @@ fast-fifo@^1.2.0, fast-fifo@^1.3.2:
   resolved "https://registry.yarnpkg.com/fast-fifo/-/fast-fifo-1.3.2.tgz#286e31de96eb96d38a97899815740ba2a4f3640c"
   integrity sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==
 
-fast-glob@^3.0.3, fast-glob@^3.1.1, fast-glob@^3.2.11, fast-glob@^3.2.12, fast-glob@^3.2.9, fast-glob@^3.3.0, fast-glob@^3.3.2:
+fast-glob@^3.0.3, fast-glob@^3.2.11, fast-glob@^3.2.12, fast-glob@^3.2.9, fast-glob@^3.3.0, fast-glob@^3.3.2:
   version "3.3.2"
   resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129"
   integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==
@@ -16667,12 +16629,12 @@ figures@^6.0.0:
   dependencies:
     is-unicode-supported "^2.0.0"
 
-file-entry-cache@^6.0.1:
-  version "6.0.1"
-  resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
-  integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
+file-entry-cache@^8.0.0:
+  version "8.0.0"
+  resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-8.0.0.tgz#7787bddcf1131bffb92636c69457bbc0edd6d81f"
+  integrity sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==
   dependencies:
-    flat-cache "^3.0.4"
+    flat-cache "^4.0.0"
 
 file-type@^16.5.4:
   version "16.5.4"
@@ -16952,13 +16914,13 @@ flagged-respawn@^1.0.0:
   resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-1.0.1.tgz#e7de6f1279ddd9ca9aac8a5971d618606b3aab41"
   integrity sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==
 
-flat-cache@^3.0.4:
-  version "3.0.4"
-  resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
-  integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
+flat-cache@^4.0.0:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-4.0.1.tgz#0ece39fcb14ee012f4b0410bd33dd9c1f011127c"
+  integrity sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==
   dependencies:
-    flatted "^3.1.0"
-    rimraf "^3.0.2"
+    flatted "^3.2.9"
+    keyv "^4.5.4"
 
 flat@^4.1.0:
   version "4.1.1"
@@ -16972,11 +16934,16 @@ flat@^5.0.2:
   resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241"
   integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==
 
-flatted@3.2.9, flatted@^3.1.0:
+flatted@3.2.9:
   version "3.2.9"
   resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.9.tgz#7eb4c67ca1ba34232ca9d2d93e9886e611ad7daf"
   integrity sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==
 
+flatted@^3.2.9:
+  version "3.3.2"
+  resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.2.tgz#adba1448a9841bec72b42c532ea23dbbedef1a27"
+  integrity sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==
+
 floating-vue@2.0.0-beta.17:
   version "2.0.0-beta.17"
   resolved "https://registry.yarnpkg.com/floating-vue/-/floating-vue-2.0.0-beta.17.tgz#f488d992f58d76b41fc3490f3ef969d58a5c8f99"
@@ -17339,15 +17306,17 @@ function-bind@^1.1.1, function-bind@^1.1.2:
   resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c"
   integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==
 
-function.prototype.name@^1.1.2, function.prototype.name@^1.1.3, function.prototype.name@^1.1.6:
-  version "1.1.6"
-  resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd"
-  integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==
+function.prototype.name@^1.1.2, function.prototype.name@^1.1.3, function.prototype.name@^1.1.6, function.prototype.name@^1.1.8:
+  version "1.1.8"
+  resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.8.tgz#e68e1df7b259a5c949eeef95cdbde53edffabb78"
+  integrity sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==
   dependencies:
-    call-bind "^1.0.2"
-    define-properties "^1.2.0"
-    es-abstract "^1.22.1"
+    call-bind "^1.0.8"
+    call-bound "^1.0.3"
+    define-properties "^1.2.1"
     functions-have-names "^1.2.3"
+    hasown "^2.0.2"
+    is-callable "^1.2.7"
 
 functions-have-names@^1.2.3:
   version "1.2.3"
@@ -17442,16 +17411,21 @@ get-func-name@^2.0.0, get-func-name@^2.0.1, get-func-name@^2.0.2:
   resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.2.tgz#0d7cf20cd13fda808669ffa88f4ffc7a3943fc41"
   integrity sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==
 
-get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4:
-  version "1.2.4"
-  resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd"
-  integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==
+get-intrinsic@^1.1.3, get-intrinsic@^1.2.2, get-intrinsic@^1.2.4, get-intrinsic@^1.2.5, get-intrinsic@^1.2.6, get-intrinsic@^1.2.7:
+  version "1.2.7"
+  resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.7.tgz#dcfcb33d3272e15f445d15124bc0a216189b9044"
+  integrity sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==
   dependencies:
+    call-bind-apply-helpers "^1.0.1"
+    es-define-property "^1.0.1"
     es-errors "^1.3.0"
+    es-object-atoms "^1.0.0"
     function-bind "^1.1.2"
-    has-proto "^1.0.1"
-    has-symbols "^1.0.3"
-    hasown "^2.0.0"
+    get-proto "^1.0.0"
+    gopd "^1.2.0"
+    has-symbols "^1.1.0"
+    hasown "^2.0.2"
+    math-intrinsics "^1.1.0"
 
 get-nonce@^1.0.0:
   version "1.0.1"
@@ -17493,6 +17467,14 @@ get-port@^7.0.0:
   resolved "https://registry.npmjs.org/get-port/-/get-port-7.1.0.tgz#d5a500ebfc7aa705294ec2b83cc38c5d0e364fec"
   integrity sha512-QB9NKEeDg3xxVwCCwJQ9+xycaz6pBB6iQ76wiWMl1927n0Kir6alPiP+yuiICLLU4jpMe08dXfpebuQppFA2zw==
 
+get-proto@^1.0.0, get-proto@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz#150b3f2743869ef3e851ec0c49d15b1d14d00ee1"
+  integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==
+  dependencies:
+    dunder-proto "^1.0.1"
+    es-object-atoms "^1.0.0"
+
 get-stream@3.0.0, get-stream@^3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
@@ -17540,14 +17522,14 @@ get-stream@^8.0.1:
   resolved "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz#def9dfd71742cd7754a7761ed43749a27d02eca2"
   integrity sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==
 
-get-symbol-description@^1.0.2:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.2.tgz#533744d5aa20aca4e079c8e5daf7fd44202821f5"
-  integrity sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==
+get-symbol-description@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.1.0.tgz#7bdd54e0befe8ffc9f3b4e203220d9f1e881b6ee"
+  integrity sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==
   dependencies:
-    call-bind "^1.0.5"
+    call-bound "^1.0.3"
     es-errors "^1.3.0"
-    get-intrinsic "^1.2.4"
+    get-intrinsic "^1.2.6"
 
 get-uri@^6.0.1:
   version "6.0.1"
@@ -17604,11 +17586,6 @@ gifwrap@^0.10.1:
     image-q "^4.0.0"
     omggif "^1.0.10"
 
-git-hooks-list@1.0.3:
-  version "1.0.3"
-  resolved "https://registry.yarnpkg.com/git-hooks-list/-/git-hooks-list-1.0.3.tgz#be5baaf78203ce342f2f844a9d2b03dba1b45156"
-  integrity sha512-Y7wLWcrLUXwk2noSka166byGCvhMtDRpgHdzCno1UQv/n/Hegp++a2xBWJL1lJarnKD3SWaljD+0z1ztqxuKyQ==
-
 git-log-parser@^1.2.0:
   version "1.2.0"
   resolved "https://registry.yarnpkg.com/git-log-parser/-/git-log-parser-1.2.0.tgz#2e6a4c1b13fc00028207ba795a7ac31667b9fd4a"
@@ -17908,38 +17885,35 @@ globals@^11.1.0:
   resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
   integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
 
-globals@^13.19.0, globals@^13.20.0:
+globals@^13.24.0:
   version "13.24.0"
   resolved "https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171"
   integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==
   dependencies:
     type-fest "^0.20.2"
 
+globals@^14.0.0:
+  version "14.0.0"
+  resolved "https://registry.yarnpkg.com/globals/-/globals-14.0.0.tgz#898d7413c29babcf6bafe56fcadded858ada724e"
+  integrity sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==
+
+globals@^15.11.0, globals@^15.14.0:
+  version "15.14.0"
+  resolved "https://registry.yarnpkg.com/globals/-/globals-15.14.0.tgz#b8fd3a8941ff3b4d38f3319d433b61bbb482e73f"
+  integrity sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==
+
 globals@^9.18.0:
   version "9.18.0"
   resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
   integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==
 
-globalthis@^1.0.1, globalthis@^1.0.3:
-  version "1.0.3"
-  resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf"
-  integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==
-  dependencies:
-    define-properties "^1.1.3"
-
-globby@10.0.0:
-  version "10.0.0"
-  resolved "https://registry.yarnpkg.com/globby/-/globby-10.0.0.tgz#abfcd0630037ae174a88590132c2f6804e291072"
-  integrity sha512-3LifW9M4joGZasyYPz2A1U74zbC/45fvpXUvO/9KbSa+VV0aGZarWkfdgKyR9sExNP0t0x0ss/UMJpNpcaTspw==
+globalthis@^1.0.1, globalthis@^1.0.4:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz#7430ed3a975d97bfb59bcce41f5cabbafa651236"
+  integrity sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==
   dependencies:
-    "@types/glob" "^7.1.1"
-    array-union "^2.1.0"
-    dir-glob "^3.0.1"
-    fast-glob "^3.0.3"
-    glob "^7.1.3"
-    ignore "^5.1.1"
-    merge2 "^1.2.3"
-    slash "^3.0.0"
+    define-properties "^1.2.1"
+    gopd "^1.0.1"
 
 globby@10.0.1, globby@^10.0.1:
   version "10.0.1"
@@ -17955,18 +17929,6 @@ globby@10.0.1, globby@^10.0.1:
     merge2 "^1.2.3"
     slash "^3.0.0"
 
-globby@11.0.3:
-  version "11.0.3"
-  resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.3.tgz#9b1f0cb523e171dd1ad8c7b2a9fb4b644b9593cb"
-  integrity sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg==
-  dependencies:
-    array-union "^2.1.0"
-    dir-glob "^3.0.1"
-    fast-glob "^3.1.1"
-    ignore "^5.1.4"
-    merge2 "^1.3.0"
-    slash "^3.0.0"
-
 globby@11.1.0, globby@^11.0.1, globby@^11.0.3, globby@^11.0.4, globby@^11.1.0:
   version "11.1.0"
   resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b"
@@ -18032,12 +17994,10 @@ glogg@^1.0.0:
   dependencies:
     sparkles "^1.0.0"
 
-gopd@^1.0.1:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c"
-  integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==
-  dependencies:
-    get-intrinsic "^1.1.3"
+gopd@^1.0.1, gopd@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1"
+  integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==
 
 got@^11.7.0, got@^11.8.5:
   version "11.8.6"
@@ -18126,23 +18086,6 @@ graphemer@^1.4.0:
   resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6"
   integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==
 
-graphql-config@^3.0.2:
-  version "3.4.1"
-  resolved "https://registry.yarnpkg.com/graphql-config/-/graphql-config-3.4.1.tgz#59f937a1b4d3a3c2dcdb27ddf5b4d4d4b2c6e9e1"
-  integrity sha512-g9WyK4JZl1Ko++FSyE5Ir2g66njfxGzrDDhBOwnkoWf/t3TnnZG6BBkWP+pkqVJ5pqMJGPKHNrbew8jRxStjhw==
-  dependencies:
-    "@endemolshinegroup/cosmiconfig-typescript-loader" "3.0.2"
-    "@graphql-tools/graphql-file-loader" "^6.0.0"
-    "@graphql-tools/json-file-loader" "^6.0.0"
-    "@graphql-tools/load" "^6.0.0"
-    "@graphql-tools/merge" "6.0.0 - 6.2.14"
-    "@graphql-tools/url-loader" "^6.0.0"
-    "@graphql-tools/utils" "^7.0.0"
-    cosmiconfig "7.0.0"
-    cosmiconfig-toml-loader "1.0.0"
-    minimatch "3.0.4"
-    string-env-interpolation "1.0.1"
-
 graphql-config@^4.0.1:
   version "4.0.1"
   resolved "https://registry.yarnpkg.com/graphql-config/-/graphql-config-4.0.1.tgz#4ce43cb54f3f39dde5f023d6f8f04064edc16e6e"
@@ -18203,11 +18146,6 @@ graphql-tag@^2.11.0, graphql-tag@^2.12.5:
   dependencies:
     tslib "^2.1.0"
 
-graphql-ws@^4.4.1:
-  version "4.9.0"
-  resolved "https://registry.yarnpkg.com/graphql-ws/-/graphql-ws-4.9.0.tgz#5cfd8bb490b35e86583d8322f5d5d099c26e365c"
-  integrity sha512-sHkK9+lUm20/BGawNEWNtVAeJzhZeBg21VmvmLoT5NdGVeZWv5PdIhkcayQIAgjSyyQ17WMKmbDijIPG2On+Ag==
-
 graphql-ws@^5.4.1, graphql-ws@^5.5.5:
   version "5.5.5"
   resolved "https://registry.yarnpkg.com/graphql-ws/-/graphql-ws-5.5.5.tgz#f375486d3f196e2a2527b503644693ae3a8670a9"
@@ -18430,20 +18368,22 @@ has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2:
   dependencies:
     es-define-property "^1.0.0"
 
-has-proto@^1.0.1, has-proto@^1.0.3:
-  version "1.0.3"
-  resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd"
-  integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==
+has-proto@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.2.0.tgz#5de5a6eabd95fdffd9818b43055e8065e39fe9d5"
+  integrity sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==
+  dependencies:
+    dunder-proto "^1.0.0"
 
 has-symbol-support-x@^1.4.1:
   version "1.4.2"
   resolved "https://registry.yarnpkg.com/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz#1409f98bc00247da45da67cee0a36f282ff26455"
   integrity sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==
 
-has-symbols@^1.0.0, has-symbols@^1.0.1, has-symbols@^1.0.3:
-  version "1.0.3"
-  resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
-  integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
+has-symbols@^1.0.0, has-symbols@^1.0.3, has-symbols@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338"
+  integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==
 
 has-to-string-tag-x@^1.2.0:
   version "1.4.1"
@@ -18535,7 +18475,7 @@ hasha@5.2.2:
     is-stream "^2.0.0"
     type-fest "^0.8.0"
 
-hasown@^2.0.0, hasown@^2.0.1, hasown@^2.0.2:
+hasown@^2.0.0, hasown@^2.0.2:
   version "2.0.2"
   resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003"
   integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==
@@ -18999,10 +18939,10 @@ ignore@^3.0.9, ignore@^3.3.5:
   resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043"
   integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==
 
-ignore@^5.0.4, ignore@^5.1.1, ignore@^5.1.4, ignore@^5.2.0, ignore@^5.2.4:
-  version "5.2.4"
-  resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324"
-  integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==
+ignore@^5.0.4, ignore@^5.1.1, ignore@^5.2.0, ignore@^5.2.4, ignore@^5.3.1:
+  version "5.3.2"
+  resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5"
+  integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==
 
 image-q@^4.0.0:
   version "4.0.0"
@@ -19049,13 +18989,6 @@ import-from-esm@^1.0.3, import-from-esm@^1.3.1:
     debug "^4.3.4"
     import-meta-resolve "^4.0.0"
 
-import-from@3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/import-from/-/import-from-3.0.0.tgz#055cfec38cd5a27d8057ca51376d7d3bf0891966"
-  integrity sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==
-  dependencies:
-    resolve-from "^5.0.0"
-
 import-from@4.0.0:
   version "4.0.0"
   resolved "https://registry.yarnpkg.com/import-from/-/import-from-4.0.0.tgz#2710b8d66817d232e16f4166e319248d3d5492e2"
@@ -19252,14 +19185,14 @@ inquirer@^8.2.4:
     through "^2.3.6"
     wrap-ansi "^7.0.0"
 
-internal-slot@^1.0.4, internal-slot@^1.0.7:
-  version "1.0.7"
-  resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.7.tgz#c06dcca3ed874249881007b0a5523b172a190802"
-  integrity sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==
+internal-slot@^1.0.4, internal-slot@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.1.0.tgz#1eac91762947d2f7056bc838d93e13b2e9604961"
+  integrity sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==
   dependencies:
     es-errors "^1.3.0"
-    hasown "^2.0.0"
-    side-channel "^1.0.4"
+    hasown "^2.0.2"
+    side-channel "^1.1.0"
 
 interpret@^1.0.0, interpret@^1.4.0:
   version "1.4.0"
@@ -19372,13 +19305,14 @@ is-arguments@^1.0.4, is-arguments@^1.1.1:
     call-bind "^1.0.2"
     has-tostringtag "^1.0.0"
 
-is-array-buffer@^3.0.2, is-array-buffer@^3.0.4:
-  version "3.0.4"
-  resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.4.tgz#7a1f92b3d61edd2bc65d24f130530ea93d7fae98"
-  integrity sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==
+is-array-buffer@^3.0.2, is-array-buffer@^3.0.4, is-array-buffer@^3.0.5:
+  version "3.0.5"
+  resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.5.tgz#65742e1e687bd2cc666253068fd8707fe4d44280"
+  integrity sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==
   dependencies:
-    call-bind "^1.0.2"
-    get-intrinsic "^1.2.1"
+    call-bind "^1.0.8"
+    call-bound "^1.0.3"
+    get-intrinsic "^1.2.6"
 
 is-arrayish@^0.2.1:
   version "0.2.1"
@@ -19390,10 +19324,22 @@ is-arrayish@^0.3.1:
   resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03"
   integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==
 
-is-bigint@^1.0.1:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.1.tgz#6923051dfcbc764278540b9ce0e6b3213aa5ebc2"
-  integrity sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg==
+is-async-function@^2.0.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.1.0.tgz#1d1080612c493608e93168fc4458c245074c06a6"
+  integrity sha512-GExz9MtyhlZyXYLxzlJRj5WUCE661zhDa1Yna52CN57AJsymh+DvXXjyveSioqSRdxvUrdKdvqB1b5cVKsNpWQ==
+  dependencies:
+    call-bound "^1.0.3"
+    get-proto "^1.0.1"
+    has-tostringtag "^1.0.2"
+    safe-regex-test "^1.1.0"
+
+is-bigint@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.1.0.tgz#dda7a3445df57a42583db4228682eba7c4170672"
+  integrity sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==
+  dependencies:
+    has-bigints "^1.0.2"
 
 is-binary-path@^1.0.0:
   version "1.0.1"
@@ -19409,12 +19355,13 @@ is-binary-path@~2.1.0:
   dependencies:
     binary-extensions "^2.0.0"
 
-is-boolean-object@^1.1.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.0.tgz#e2aaad3a3a8fca34c28f6eee135b156ed2587ff0"
-  integrity sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==
+is-boolean-object@^1.2.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.2.1.tgz#c20d0c654be05da4fbc23c562635c019e93daf89"
+  integrity sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==
   dependencies:
-    call-bind "^1.0.0"
+    call-bound "^1.0.2"
+    has-tostringtag "^1.0.2"
 
 is-buffer@^1.1.5, is-buffer@~1.1.6:
   version "1.1.6"
@@ -19426,7 +19373,7 @@ is-buffer@~2.0.3:
   resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191"
   integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==
 
-is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7:
+is-callable@^1.1.3, is-callable@^1.2.7:
   version "1.2.7"
   resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
   integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
@@ -19452,7 +19399,7 @@ is-cidr@^5.1.0:
   dependencies:
     cidr-regex "^4.1.1"
 
-is-core-module@^2.13.0, is-core-module@^2.13.1, is-core-module@^2.5.0, is-core-module@^2.8.0:
+is-core-module@^2.13.0, is-core-module@^2.5.0:
   version "2.13.1"
   resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384"
   integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==
@@ -19473,19 +19420,22 @@ is-data-descriptor@^1.0.0:
   dependencies:
     kind-of "^6.0.0"
 
-is-data-view@^1.0.1:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.1.tgz#4b4d3a511b70f3dc26d42c03ca9ca515d847759f"
-  integrity sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==
+is-data-view@^1.0.1, is-data-view@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.2.tgz#bae0a41b9688986c2188dda6657e56b8f9e63b8e"
+  integrity sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==
   dependencies:
+    call-bound "^1.0.2"
+    get-intrinsic "^1.2.6"
     is-typed-array "^1.1.13"
 
-is-date-object@^1.0.1, is-date-object@^1.0.5:
-  version "1.0.5"
-  resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
-  integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
+is-date-object@^1.0.5, is-date-object@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.1.0.tgz#ad85541996fc7aa8b2729701d27b7319f95d82f7"
+  integrity sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==
   dependencies:
-    has-tostringtag "^1.0.0"
+    call-bound "^1.0.2"
+    has-tostringtag "^1.0.2"
 
 is-descriptor@^0.1.0:
   version "0.1.6"
@@ -19542,6 +19492,13 @@ is-extglob@^2.1.0, is-extglob@^2.1.1:
   resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
   integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
 
+is-finalizationregistry@^1.1.0:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz#eefdcdc6c94ddd0674d9c85887bf93f944a97c90"
+  integrity sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==
+  dependencies:
+    call-bound "^1.0.3"
+
 is-fork-pr@2.5.0:
   version "2.5.0"
   resolved "https://registry.yarnpkg.com/is-fork-pr/-/is-fork-pr-2.5.0.tgz#75f9f44ae245448c84f6c1b07fa816592538da56"
@@ -19581,12 +19538,15 @@ is-function@^1.0.1:
   resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.2.tgz#4f097f30abf6efadac9833b17ca5dc03f8144e08"
   integrity sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==
 
-is-generator-function@^1.0.7:
-  version "1.0.10"
-  resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72"
-  integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==
+is-generator-function@^1.0.10, is-generator-function@^1.0.7:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.1.0.tgz#bf3eeda931201394f57b5dba2800f91a238309ca"
+  integrity sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==
   dependencies:
-    has-tostringtag "^1.0.0"
+    call-bound "^1.0.3"
+    get-proto "^1.0.0"
+    has-tostringtag "^1.0.2"
+    safe-regex-test "^1.1.0"
 
 is-glob@4.0.1:
   version "4.0.1"
@@ -19662,10 +19622,10 @@ is-lower-case@^2.0.2:
   dependencies:
     tslib "^2.0.3"
 
-is-map@^2.0.1, is-map@^2.0.2:
-  version "2.0.2"
-  resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127"
-  integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==
+is-map@^2.0.2, is-map@^2.0.3:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz#ede96b7fe1e270b3c4465e3a465658764926d62e"
+  integrity sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==
 
 is-module@^1.0.0:
   version "1.0.0"
@@ -19685,20 +19645,18 @@ is-negated-glob@^1.0.0:
   resolved "https://registry.yarnpkg.com/is-negated-glob/-/is-negated-glob-1.0.0.tgz#6910bca5da8c95e784b5751b976cf5a10fee36d2"
   integrity sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=
 
-is-negative-zero@^2.0.3:
-  version "2.0.3"
-  resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747"
-  integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==
-
 is-network-error@^1.0.0:
   version "1.1.0"
   resolved "https://registry.yarnpkg.com/is-network-error/-/is-network-error-1.1.0.tgz#d26a760e3770226d11c169052f266a4803d9c997"
   integrity sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==
 
-is-number-object@^1.0.4:
-  version "1.0.4"
-  resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.4.tgz#36ac95e741cf18b283fc1ddf5e83da798e3ec197"
-  integrity sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==
+is-number-object@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.1.1.tgz#144b21e95a1bc148205dcc2814a9134ec41b2541"
+  integrity sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==
+  dependencies:
+    call-bound "^1.0.3"
+    has-tostringtag "^1.0.2"
 
 is-number@^3.0.0:
   version "3.0.0"
@@ -19782,21 +19740,21 @@ is-path-inside@^2.0.0, is-path-inside@^2.1.0:
   dependencies:
     path-is-inside "^1.0.2"
 
-is-path-inside@^3.0.2, is-path-inside@^3.0.3:
+is-path-inside@^3.0.2:
   version "3.0.3"
   resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
   integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
 
-is-plain-obj@2.1.0, is-plain-obj@^2.1.0:
-  version "2.1.0"
-  resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
-  integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
-
 is-plain-obj@^1.0.0, is-plain-obj@^1.1.0:
   version "1.1.0"
   resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
   integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4=
 
+is-plain-obj@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
+  integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
+
 is-plain-obj@^3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7"
@@ -19848,13 +19806,15 @@ is-reference@^3.0.3:
   dependencies:
     "@types/estree" "^1.0.6"
 
-is-regex@^1.1.0, is-regex@^1.1.4:
-  version "1.1.4"
-  resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
-  integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
+is-regex@^1.1.0, is-regex@^1.1.4, is-regex@^1.2.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.2.1.tgz#76d70a3ed10ef9be48eb577887d74205bf0cad22"
+  integrity sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==
   dependencies:
-    call-bind "^1.0.2"
-    has-tostringtag "^1.0.0"
+    call-bound "^1.0.2"
+    gopd "^1.2.0"
+    has-tostringtag "^1.0.2"
+    hasown "^2.0.2"
 
 is-regexp@^1.0.0:
   version "1.0.0"
@@ -19873,17 +19833,17 @@ is-retry-allowed@^1.1.0:
   resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4"
   integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==
 
-is-set@^2.0.1, is-set@^2.0.2:
-  version "2.0.2"
-  resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec"
-  integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==
+is-set@^2.0.2, is-set@^2.0.3:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz#8ab209ea424608141372ded6e0cb200ef1d9d01d"
+  integrity sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==
 
-is-shared-array-buffer@^1.0.2, is-shared-array-buffer@^1.0.3:
-  version "1.0.3"
-  resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz#1237f1cba059cdb62431d378dcc37d9680181688"
-  integrity sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==
+is-shared-array-buffer@^1.0.2, is-shared-array-buffer@^1.0.4:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz#9b67844bd9b7f246ba0708c3a93e34269c774f6f"
+  integrity sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==
   dependencies:
-    call-bind "^1.0.7"
+    call-bound "^1.0.3"
 
 is-ssh@^1.4.0:
   version "1.4.0"
@@ -19907,19 +19867,22 @@ is-stream@^3.0.0:
   resolved "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac"
   integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==
 
-is-string@^1.0.5, is-string@^1.0.7:
-  version "1.0.7"
-  resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
-  integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
+is-string@^1.0.7, is-string@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.1.1.tgz#92ea3f3d5c5b6e039ca8677e5ac8d07ea773cbb9"
+  integrity sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==
   dependencies:
-    has-tostringtag "^1.0.0"
+    call-bound "^1.0.3"
+    has-tostringtag "^1.0.2"
 
-is-symbol@^1.0.2, is-symbol@^1.0.3:
-  version "1.0.3"
-  resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937"
-  integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==
+is-symbol@^1.0.4, is-symbol@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.1.1.tgz#f47761279f532e2b05a7024a7506dbbedacd0634"
+  integrity sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==
   dependencies:
-    has-symbols "^1.0.1"
+    call-bound "^1.0.2"
+    has-symbols "^1.1.0"
+    safe-regex-test "^1.1.0"
 
 is-text-path@^1.0.1:
   version "1.0.1"
@@ -19935,12 +19898,12 @@ is-text-path@^2.0.0:
   dependencies:
     text-extensions "^2.0.0"
 
-is-typed-array@^1.1.13, is-typed-array@^1.1.3:
-  version "1.1.13"
-  resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.13.tgz#d6c5ca56df62334959322d7d7dd1cca50debe229"
-  integrity sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==
+is-typed-array@^1.1.13, is-typed-array@^1.1.14, is-typed-array@^1.1.15, is-typed-array@^1.1.3:
+  version "1.1.15"
+  resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.15.tgz#4bfb4a45b61cee83a5a46fba778e4e8d59c0ce0b"
+  integrity sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==
   dependencies:
-    which-typed-array "^1.1.14"
+    which-typed-array "^1.1.16"
 
 is-typedarray@~1.0.0:
   version "1.0.0"
@@ -20000,22 +19963,25 @@ is-valid-hostname@1.0.1:
   resolved "https://registry.yarnpkg.com/is-valid-hostname/-/is-valid-hostname-1.0.1.tgz#4001a549e908bcc6a6d5347d8781779d8fedd9ce"
   integrity sha512-GuMwWwBVh+TiH/DzzcITaCJ3aMijgCwE+/Sa4Zh13PyslxaTX0xmWxnwkNOoXcCTCd3z/Dw8Pe5Brsgp+bULtA==
 
-is-weakmap@^2.0.1:
-  version "2.0.1"
-  resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2"
-  integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==
+is-weakmap@^2.0.2:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz#bf72615d649dfe5f699079c54b83e47d1ae19cfd"
+  integrity sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==
 
-is-weakref@^1.0.2:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
-  integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
+is-weakref@^1.0.2, is-weakref@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.1.0.tgz#47e3472ae95a63fa9cf25660bcf0c181c39770ef"
+  integrity sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==
   dependencies:
-    call-bind "^1.0.2"
+    call-bound "^1.0.2"
 
-is-weakset@^2.0.1:
-  version "2.0.1"
-  resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.1.tgz#e9a0af88dbd751589f5e50d80f4c98b780884f83"
-  integrity sha512-pi4vhbhVHGLxohUw7PhGsueT4vRGFoXhP7+RGN0jKIv9+8PWYCQTqtADngrxOm2g46hoH0+g8uZZBzMrvVGDmw==
+is-weakset@^2.0.3:
+  version "2.0.4"
+  resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.4.tgz#c9f5deb0bc1906c6d6f1027f284ddf459249daca"
+  integrity sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==
+  dependencies:
+    call-bound "^1.0.3"
+    get-intrinsic "^1.2.6"
 
 is-windows@^1.0.1, is-windows@^1.0.2:
   version "1.0.2"
@@ -20161,6 +20127,18 @@ iterall@^1.2.1, iterall@^1.3.0:
   resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.3.0.tgz#afcb08492e2915cbd8a0884eb93a8c94d0d72fea"
   integrity sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==
 
+iterator.prototype@^1.1.4:
+  version "1.1.5"
+  resolved "https://registry.yarnpkg.com/iterator.prototype/-/iterator.prototype-1.1.5.tgz#12c959a29de32de0aa3bbbb801f4d777066dae39"
+  integrity sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==
+  dependencies:
+    define-data-property "^1.1.4"
+    es-object-atoms "^1.0.0"
+    get-intrinsic "^1.2.6"
+    get-proto "^1.0.0"
+    has-symbols "^1.1.0"
+    set-function-name "^2.0.2"
+
 its-name@1.0.0:
   version "1.0.0"
   resolved "https://registry.yarnpkg.com/its-name/-/its-name-1.0.0.tgz#2065f1883ecb568c65f7112ddbf123401fae4af0"
@@ -20258,6 +20236,11 @@ jiti@^1.18.2, jiti@^1.21.6:
   resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.7.tgz#9dd81043424a3d28458b193d965f0d18a2300ba9"
   integrity sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==
 
+jiti@^2.4.2:
+  version "2.4.2"
+  resolved "https://registry.yarnpkg.com/jiti/-/jiti-2.4.2.tgz#d19b7732ebb6116b06e2038da74a55366faef560"
+  integrity sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==
+
 jose@^4.15.5:
   version "4.15.5"
   resolved "https://registry.yarnpkg.com/jose/-/jose-4.15.5.tgz#6475d0f467ecd3c630a1b5dadd2735a7288df706"
@@ -20369,15 +20352,6 @@ json-buffer@3.0.1:
   resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13"
   integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==
 
-json-fixer@^1.3.2:
-  version "1.6.15"
-  resolved "https://registry.yarnpkg.com/json-fixer/-/json-fixer-1.6.15.tgz#f1f03b6771fcb383695d458c53e50b10999fba7f"
-  integrity sha512-TuDuZ5KrgyjoCIppdPXBMqiGfota55+odM+j2cQ5rt/XKyKmqGB3Whz1F8SN8+60yYGy/Nu5lbRZ+rx8kBIvBw==
-  dependencies:
-    "@babel/runtime" "^7.18.9"
-    chalk "^4.1.2"
-    pegjs "^0.10.0"
-
 json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2:
   version "1.0.2"
   resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
@@ -20647,10 +20621,10 @@ keyv@3.0.0, keyv@^3.0.0:
   dependencies:
     json-buffer "3.0.0"
 
-keyv@^4.0.0:
-  version "4.0.3"
-  resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.0.3.tgz#4f3aa98de254803cafcd2896734108daa35e4254"
-  integrity sha512-zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA==
+keyv@^4.0.0, keyv@^4.5.4:
+  version "4.5.4"
+  resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93"
+  integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==
   dependencies:
     json-buffer "3.0.1"
 
@@ -21081,14 +21055,6 @@ lilconfig@^3.0.0, lilconfig@^3.1.3:
   resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.3.tgz#a1bcfd6257f9585bf5ae14ceeebb7b559025e4c4"
   integrity sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==
 
-line-column@^1.0.2:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/line-column/-/line-column-1.0.2.tgz#d25af2936b6f4849172b312e4792d1d987bc34a2"
-  integrity sha512-Ktrjk5noGYlHsVnYWh62FLVs4hTb8A3e+vucNZMgPeAOITdshMSgv4cCZQeRDjm7+goqmo6+liZwTXo+U3sVww==
-  dependencies:
-    isarray "^1.0.0"
-    isobject "^2.0.0"
-
 line-diff@^2.0.1:
   version "2.1.1"
   resolved "https://registry.yarnpkg.com/line-diff/-/line-diff-2.1.1.tgz#a389799b931375a3b1e764964ad0b0b3ce60d6f6"
@@ -21442,11 +21408,6 @@ lodash.escaperegexp@^4.1.2:
   resolved "https://registry.yarnpkg.com/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz#64762c48618082518ac3df4ccf5d5886dae20347"
   integrity sha1-ZHYsSGGAglGKw99Mz11YhtriA0c=
 
-lodash.flatten@^4.4.0:
-  version "4.4.0"
-  resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f"
-  integrity sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=
-
 lodash.get@^4, lodash.get@^4.0.0, lodash.get@^4.4.2:
   version "4.4.2"
   resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99"
@@ -21546,11 +21507,6 @@ lodash.uniqby@^4.7.0:
   resolved "https://registry.yarnpkg.com/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz#d99c07a669e9e6d24e1362dfe266c67616af1302"
   integrity sha1-2ZwHpmnp5tJOE2Lf4mbGdhavEwI=
 
-lodash.without@^4.4.0:
-  version "4.4.0"
-  resolved "https://registry.yarnpkg.com/lodash.without/-/lodash.without-4.4.0.tgz#3cd4574a00b67bae373a94b748772640507b7aac"
-  integrity sha1-PNRXSgC2e643OpS3SHcmQFB7eqw=
-
 lodash@4.17.21, lodash@^4.16.4, lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.17.5, lodash@~4.17.0:
   version "4.17.21"
   resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
@@ -21983,6 +21939,11 @@ matcher@^3.0.0:
   dependencies:
     escape-string-regexp "^4.0.0"
 
+math-intrinsics@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9"
+  integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==
+
 md5.js@^1.3.4:
   version "1.3.5"
   resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f"
@@ -22614,7 +22575,7 @@ mobx@6.13.5:
   resolved "https://registry.npmjs.org/mobx/-/mobx-6.13.5.tgz#957d9df88c7f8b4baa7c6f8bdcb6d68b432a6ed5"
   integrity sha512-/HTWzW2s8J1Gqt+WmUj5Y0mddZk+LInejADc79NJadrWla3rHzmRHki/mnEUH1AvOmbNTZ1BRbKxr8DSgfdjMA==
 
-"mocha-7.0.1@npm:mocha@7.0.1", mocha@7.0.1:
+"mocha-7.0.1@npm:mocha@7.0.1":
   version "7.0.1"
   resolved "https://registry.yarnpkg.com/mocha/-/mocha-7.0.1.tgz#276186d35a4852f6249808c6dd4a1376cbf6c6ce"
   integrity sha512-9eWmWTdHLXh72rGrdZjNbG3aa1/3NRPpul1z0D979QpEnFdCG0Q5tv834N+94QEN2cysfV72YocQ3fn87s70fg==
@@ -22731,6 +22692,36 @@ mocha@6.2.2:
     yargs-parser "13.1.1"
     yargs-unparser "1.6.0"
 
+mocha@7.0.1:
+  version "7.0.1"
+  resolved "https://registry.yarnpkg.com/mocha/-/mocha-7.0.1.tgz#276186d35a4852f6249808c6dd4a1376cbf6c6ce"
+  integrity sha512-9eWmWTdHLXh72rGrdZjNbG3aa1/3NRPpul1z0D979QpEnFdCG0Q5tv834N+94QEN2cysfV72YocQ3fn87s70fg==
+  dependencies:
+    ansi-colors "3.2.3"
+    browser-stdout "1.3.1"
+    chokidar "3.3.0"
+    debug "3.2.6"
+    diff "3.5.0"
+    escape-string-regexp "1.0.5"
+    find-up "3.0.0"
+    glob "7.1.3"
+    growl "1.10.5"
+    he "1.2.0"
+    js-yaml "3.13.1"
+    log-symbols "2.2.0"
+    minimatch "3.0.4"
+    mkdirp "0.5.1"
+    ms "2.1.1"
+    node-environment-flags "1.0.6"
+    object.assign "4.1.0"
+    strip-json-comments "2.0.1"
+    supports-color "6.0.0"
+    which "1.3.1"
+    wide-align "1.1.3"
+    yargs "13.3.0"
+    yargs-parser "13.1.1"
+    yargs-unparser "1.6.0"
+
 mocha@7.1.0:
   version "7.1.0"
   resolved "https://registry.yarnpkg.com/mocha/-/mocha-7.1.0.tgz#c784f579ad0904d29229ad6cb1e2514e4db7d249"
@@ -24049,10 +24040,10 @@ nth-check@^1.0.2:
   dependencies:
     boolbase "~1.0.0"
 
-nth-check@^2.0.1:
-  version "2.0.1"
-  resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.0.1.tgz#2efe162f5c3da06a28959fbd3db75dbeea9f0fc2"
-  integrity sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==
+nth-check@^2.0.1, nth-check@^2.1.1:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d"
+  integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==
   dependencies:
     boolbase "^1.0.0"
 
@@ -24151,10 +24142,10 @@ object-hash@^3.0.0:
   resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9"
   integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==
 
-object-inspect@^1.13.1:
-  version "1.13.1"
-  resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2"
-  integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==
+object-inspect@^1.13.3:
+  version "1.13.3"
+  resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.3.tgz#f14c183de51130243d6d18ae149375ff50ea488a"
+  integrity sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==
 
 object-is@^1.0.1, object-is@^1.1.2, object-is@^1.1.5:
   version "1.1.5"
@@ -24200,14 +24191,16 @@ object.assign@4.1.0:
     has-symbols "^1.0.0"
     object-keys "^1.0.11"
 
-object.assign@^4.0.4, object.assign@^4.1.0, object.assign@^4.1.2, object.assign@^4.1.4, object.assign@^4.1.5:
-  version "4.1.5"
-  resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0"
-  integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==
+object.assign@^4.0.4, object.assign@^4.1.0, object.assign@^4.1.2, object.assign@^4.1.4, object.assign@^4.1.7:
+  version "4.1.7"
+  resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.7.tgz#8c14ca1a424c6a561b0bb2a22f66f5049a945d3d"
+  integrity sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==
   dependencies:
-    call-bind "^1.0.5"
+    call-bind "^1.0.8"
+    call-bound "^1.0.3"
     define-properties "^1.2.1"
-    has-symbols "^1.0.3"
+    es-object-atoms "^1.0.0"
+    has-symbols "^1.1.0"
     object-keys "^1.1.1"
 
 object.defaults@^1.0.0, object.defaults@^1.1.0:
@@ -24220,7 +24213,7 @@ object.defaults@^1.0.0, object.defaults@^1.1.0:
     for-own "^1.0.0"
     isobject "^3.0.0"
 
-object.entries@^1.1.2:
+object.entries@^1.1.2, object.entries@^1.1.8:
   version "1.1.8"
   resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.8.tgz#bffe6f282e01f4d17807204a24f8edd823599c41"
   integrity sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==
@@ -24229,7 +24222,7 @@ object.entries@^1.1.2:
     define-properties "^1.2.1"
     es-object-atoms "^1.0.0"
 
-object.fromentries@^2.0.2, object.fromentries@^2.0.3, object.fromentries@^2.0.7:
+object.fromentries@^2.0.3, object.fromentries@^2.0.8:
   version "2.0.8"
   resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.8.tgz#f7195d8a9b97bd95cbc1999ea939ecd1a2b00c65"
   integrity sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==
@@ -24248,15 +24241,6 @@ object.getownpropertydescriptors@^2.0.3:
     define-properties "^1.1.3"
     es-abstract "^1.18.0-next.2"
 
-object.groupby@^1.0.1:
-  version "1.0.3"
-  resolved "https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.3.tgz#9b125c36238129f6f7b61954a1e7176148d5002e"
-  integrity sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==
-  dependencies:
-    call-bind "^1.0.7"
-    define-properties "^1.2.1"
-    es-abstract "^1.23.2"
-
 object.map@^1.0.0:
   version "1.0.1"
   resolved "https://registry.yarnpkg.com/object.map/-/object.map-1.0.1.tgz#cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37"
@@ -24288,12 +24272,13 @@ object.reduce@^1.0.0:
     for-own "^1.0.0"
     make-iterator "^1.0.0"
 
-object.values@^1.1.0, object.values@^1.1.1, object.values@^1.1.5, object.values@^1.1.7:
-  version "1.2.0"
-  resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.2.0.tgz#65405a9d92cee68ac2d303002e0b8470a4d9ab1b"
-  integrity sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==
+object.values@^1.1.0, object.values@^1.2.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.2.1.tgz#deed520a50809ff7f75a7cfd4bc64c7a038c6216"
+  integrity sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==
   dependencies:
-    call-bind "^1.0.7"
+    call-bind "^1.0.8"
+    call-bound "^1.0.3"
     define-properties "^1.2.1"
     es-object-atoms "^1.0.0"
 
@@ -24524,6 +24509,15 @@ ospath@1.2.2, ospath@^1.2.2:
   resolved "https://registry.yarnpkg.com/ospath/-/ospath-1.2.2.tgz#1276639774a3f8ef2572f7fe4280e0ea4550c07b"
   integrity sha1-EnZjl3Sj+O8lcvf+QoDg6kVQwHs=
 
+own-keys@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/own-keys/-/own-keys-1.0.1.tgz#e4006910a2bf913585289676eebd6f390cf51358"
+  integrity sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==
+  dependencies:
+    get-intrinsic "^1.2.6"
+    object-keys "^1.1.1"
+    safe-push-apply "^1.0.0"
+
 p-cancelable@^0.4.0:
   version "0.4.1"
   resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.4.1.tgz#35f363d67d52081c8d9585e37bcceb7e0bbcb2a0"
@@ -25346,11 +25340,6 @@ peek-readable@^4.1.0:
   resolved "https://registry.yarnpkg.com/peek-readable/-/peek-readable-4.1.0.tgz#4ece1111bf5c2ad8867c314c81356847e8a62e72"
   integrity sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==
 
-pegjs@^0.10.0:
-  version "0.10.0"
-  resolved "https://registry.yarnpkg.com/pegjs/-/pegjs-0.10.0.tgz#cf8bafae6eddff4b5a7efb185269eaaf4610ddbd"
-  integrity sha512-qI5+oFNEGi3L5HAxDwN2LA4Gg7irF70Zs25edhjld9QemOgp0CbvMtbFcMvFtEo1OityPrcCzkQFB8JP/hxgow==
-
 pend@~1.2.0:
   version "1.2.0"
   resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50"
@@ -25719,7 +25708,7 @@ postcss-scss@^3.0.2:
   dependencies:
     postcss "^8.2.7"
 
-postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.1.1, postcss-selector-parser@^6.1.2:
+postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.15, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.1.1, postcss-selector-parser@^6.1.2:
   version "6.1.2"
   resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz#27ecb41fb0e3b6ba7a1ec84fff347f734c7929de"
   integrity sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==
@@ -25970,7 +25959,7 @@ prop-types@15.7.2:
     object-assign "^4.1.1"
     react-is "^16.8.1"
 
-prop-types@15.8.1, prop-types@^15.5.10, prop-types@^15.5.8, prop-types@^15.6.0, prop-types@^15.6.2, prop-types@^15.7.2:
+prop-types@15.8.1, prop-types@^15.5.10, prop-types@^15.5.8, prop-types@^15.6.0, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1:
   version "15.8.1"
   resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
   integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
@@ -26225,6 +26214,11 @@ quote@0.4.0:
   resolved "https://registry.yarnpkg.com/quote/-/quote-0.4.0.tgz#10839217f6c1362b89194044d29b233fd7f32f01"
   integrity sha1-EIOSF/bBNiuJGUBE0psjP9fzLwE=
 
+rambda@^7.4.0:
+  version "7.5.0"
+  resolved "https://registry.yarnpkg.com/rambda/-/rambda-7.5.0.tgz#1865044c59bc0b16f63026c6e5a97e4b1bbe98fe"
+  integrity sha512-y/M9weqWAH4iopRd7EHDEQQvpFPHj1AA3oHozE9tfITHUtTR7Z9PSlIRRG2l1GuW7sefC1cXFfIcF+cgnShdBA==
+
 ramda@0.25.0:
   version "0.25.0"
   resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.25.0.tgz#8fdf68231cffa90bc2f9460390a0cb74a29b29a9"
@@ -26250,7 +26244,7 @@ ramda@0.28.0:
   resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.28.0.tgz#acd785690100337e8b063cab3470019be427cc97"
   integrity sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA==
 
-ramda@^0.27.1, ramda@^0.27.2:
+ramda@^0.27.2:
   version "0.27.2"
   resolved "https://registry.npmjs.org/ramda/-/ramda-0.27.2.tgz#84463226f7f36dc33592f6f4ed6374c48306c3f1"
   integrity sha512-SbiLPU40JuJniHexQSAgad32hfwd+DRUdwF2PlVuI5RZD0/vahUco7R8vD86J/tcEKKF9vZrUVwgtmGCqlCKyA==
@@ -26808,6 +26802,20 @@ reduce-css-calc@^2.1.6:
     css-unit-converter "^1.1.1"
     postcss-value-parser "^3.3.0"
 
+reflect.getprototypeof@^1.0.6, reflect.getprototypeof@^1.0.9:
+  version "1.0.10"
+  resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz#c629219e78a3316d8b604c765ef68996964e7bf9"
+  integrity sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==
+  dependencies:
+    call-bind "^1.0.8"
+    define-properties "^1.2.1"
+    es-abstract "^1.23.9"
+    es-errors "^1.3.0"
+    es-object-atoms "^1.0.0"
+    get-intrinsic "^1.2.7"
+    get-proto "^1.0.1"
+    which-builtin-type "^1.2.1"
+
 reflect.ownkeys@^0.2.0:
   version "0.2.0"
   resolved "https://registry.yarnpkg.com/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz#749aceec7f3fdf8b63f927a04809e90c5c0b3460"
@@ -26860,15 +26868,17 @@ regex-parser@^2.2.11:
   resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.11.tgz#3b37ec9049e19479806e878cabe7c1ca83ccfe58"
   integrity sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==
 
-regexp.prototype.flags@^1.5.1, regexp.prototype.flags@^1.5.2:
-  version "1.5.2"
-  resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz#138f644a3350f981a858c44f6bb1a61ff59be334"
-  integrity sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==
+regexp.prototype.flags@^1.5.1, regexp.prototype.flags@^1.5.3:
+  version "1.5.4"
+  resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz#1ad6c62d44a259007e55b3970e00f746efbcaa19"
+  integrity sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==
   dependencies:
-    call-bind "^1.0.6"
+    call-bind "^1.0.8"
     define-properties "^1.2.1"
     es-errors "^1.3.0"
-    set-function-name "^2.0.1"
+    get-proto "^1.0.1"
+    gopd "^1.2.0"
+    set-function-name "^2.0.2"
 
 regexpu-core@^5.3.1:
   version "5.3.2"
@@ -27241,7 +27251,7 @@ resolve@1.17.0:
   dependencies:
     path-parse "^1.0.6"
 
-resolve@1.22.8, resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.11.1, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.18.1, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.1, resolve@^1.22.4, resolve@^1.22.8, resolve@^1.3.2, resolve@^1.4.0:
+resolve@1.22.8, resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.11.1, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.1, resolve@^1.22.8, resolve@^1.3.2, resolve@^1.4.0:
   version "1.22.8"
   resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d"
   integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==
@@ -27255,6 +27265,15 @@ resolve@^0.6.3:
   resolved "https://registry.yarnpkg.com/resolve/-/resolve-0.6.3.tgz#dd957982e7e736debdf53b58a4dd91754575dd46"
   integrity sha1-3ZV5gufnNt699TtYpN2RdUV13UY=
 
+resolve@^2.0.0-next.5:
+  version "2.0.0-next.5"
+  resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.5.tgz#6b0ec3107e671e52b68cd068ef327173b90dc03c"
+  integrity sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==
+  dependencies:
+    is-core-module "^2.13.0"
+    path-parse "^1.0.7"
+    supports-preserve-symlinks-flag "^1.0.0"
+
 responselike@1.0.2, responselike@^1.0.2:
   version "1.0.2"
   resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7"
@@ -27534,14 +27553,15 @@ safaridriver@^0.1.2:
   resolved "https://registry.npmjs.org/safaridriver/-/safaridriver-0.1.2.tgz#166571d5881c7d6f884900d92d51ee1309c05aa4"
   integrity sha512-4R309+gWflJktzPXBQCobbWEHlzC4aK3a+Ov3tz2Ib2aBxiwd11phkdIBH1l0EO22x24CJMUQkpKFumRriCSRg==
 
-safe-array-concat@^1.1.2:
-  version "1.1.2"
-  resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.2.tgz#81d77ee0c4e8b863635227c721278dd524c20edb"
-  integrity sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==
+safe-array-concat@^1.1.3:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.3.tgz#c9e54ec4f603b0bbb8e7e5007a5ee7aecd1538c3"
+  integrity sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==
   dependencies:
-    call-bind "^1.0.7"
-    get-intrinsic "^1.2.4"
-    has-symbols "^1.0.3"
+    call-bind "^1.0.8"
+    call-bound "^1.0.2"
+    get-intrinsic "^1.2.6"
+    has-symbols "^1.1.0"
     isarray "^2.0.5"
 
 safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
@@ -27559,14 +27579,22 @@ safe-json-parse@~1.0.1:
   resolved "https://registry.yarnpkg.com/safe-json-parse/-/safe-json-parse-1.0.1.tgz#3e76723e38dfdda13c9b1d29a1e07ffee4b30b57"
   integrity sha1-PnZyPjjf3aE8mx0poeB//uSzC1c=
 
-safe-regex-test@^1.0.3:
-  version "1.0.3"
-  resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.3.tgz#a5b4c0f06e0ab50ea2c395c14d8371232924c377"
-  integrity sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==
+safe-push-apply@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/safe-push-apply/-/safe-push-apply-1.0.0.tgz#01850e981c1602d398c85081f360e4e6d03d27f5"
+  integrity sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==
   dependencies:
-    call-bind "^1.0.6"
     es-errors "^1.3.0"
-    is-regex "^1.1.4"
+    isarray "^2.0.5"
+
+safe-regex-test@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.1.0.tgz#7f87dfb67a3150782eaaf18583ff5d1711ac10c1"
+  integrity sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==
+  dependencies:
+    call-bound "^1.0.2"
+    es-errors "^1.3.0"
+    is-regex "^1.2.1"
 
 safe-regex@^1.1.0:
   version "1.1.0"
@@ -27801,7 +27829,7 @@ semver@7.5.3:
   dependencies:
     lru-cache "^6.0.0"
 
-semver@7.6.3, semver@^7.0.0, semver@^7.1.1, semver@^7.1.2, semver@^7.1.3, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.2, semver@^7.5.3, semver@^7.5.4, semver@^7.6.2, semver@^7.6.3:
+semver@7.6.3, semver@^7.0.0, semver@^7.1.1, semver@^7.1.2, semver@^7.1.3, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.6, semver@^7.3.7, semver@^7.3.8, semver@^7.5.2, semver@^7.5.3, semver@^7.5.4, semver@^7.6.0, semver@^7.6.2, semver@^7.6.3:
   version "7.6.3"
   resolved "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143"
   integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==
@@ -27979,7 +28007,7 @@ set-blocking@^2.0.0, set-blocking@~2.0.0:
   resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
   integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
 
-set-function-length@^1.2.1:
+set-function-length@^1.2.2:
   version "1.2.2"
   resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449"
   integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==
@@ -27991,7 +28019,7 @@ set-function-length@^1.2.1:
     gopd "^1.0.1"
     has-property-descriptors "^1.0.2"
 
-set-function-name@^2.0.1, set-function-name@^2.0.2:
+set-function-name@^2.0.2:
   version "2.0.2"
   resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985"
   integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==
@@ -28001,6 +28029,15 @@ set-function-name@^2.0.1, set-function-name@^2.0.2:
     functions-have-names "^1.2.3"
     has-property-descriptors "^1.0.2"
 
+set-proto@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/set-proto/-/set-proto-1.0.0.tgz#0760dbcff30b2d7e801fd6e19983e56da337565e"
+  integrity sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==
+  dependencies:
+    dunder-proto "^1.0.1"
+    es-errors "^1.3.0"
+    es-object-atoms "^1.0.0"
+
 set-value@^2.0.0, set-value@^2.0.1:
   version "2.0.1"
   resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
@@ -28111,15 +28148,45 @@ shiki@^0.9.12:
     onigasm "^2.2.5"
     vscode-textmate "5.2.0"
 
-side-channel@^1.0.4, side-channel@^1.0.6:
-  version "1.0.6"
-  resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2"
-  integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==
+side-channel-list@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz#10cb5984263115d3b7a0e336591e290a830af8ad"
+  integrity sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==
   dependencies:
-    call-bind "^1.0.7"
     es-errors "^1.3.0"
-    get-intrinsic "^1.2.4"
-    object-inspect "^1.13.1"
+    object-inspect "^1.13.3"
+
+side-channel-map@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz#d6bb6b37902c6fef5174e5f533fab4c732a26f42"
+  integrity sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==
+  dependencies:
+    call-bound "^1.0.2"
+    es-errors "^1.3.0"
+    get-intrinsic "^1.2.5"
+    object-inspect "^1.13.3"
+
+side-channel-weakmap@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz#11dda19d5368e40ce9ec2bdc1fb0ecbc0790ecea"
+  integrity sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==
+  dependencies:
+    call-bound "^1.0.2"
+    es-errors "^1.3.0"
+    get-intrinsic "^1.2.5"
+    object-inspect "^1.13.3"
+    side-channel-map "^1.0.1"
+
+side-channel@^1.0.4, side-channel@^1.0.6, side-channel@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz#c3fcff9c4da932784873335ec9765fa94ff66bc9"
+  integrity sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==
+  dependencies:
+    es-errors "^1.3.0"
+    object-inspect "^1.13.3"
+    side-channel-list "^1.0.0"
+    side-channel-map "^1.0.1"
+    side-channel-weakmap "^1.0.2"
 
 siginfo@^2.0.0:
   version "2.0.0"
@@ -28248,7 +28315,7 @@ sinon-chai@3.5.0:
   resolved "https://registry.yarnpkg.com/sinon-chai/-/sinon-chai-3.5.0.tgz#c9a78304b0e15befe57ef68e8a85a00553f5c60e"
   integrity sha512-IifbusYiQBpUxxFJkR3wTU68xzBN0+bxCScEaKMjBvAQERg6FnTTc1F17rseLb1tjmkJ23730AXpFI0c47FgAg==
 
-sinon-chai@3.7.0, sinon-chai@^3.3.0, sinon-chai@^3.5.0, sinon-chai@^3.7.0:
+sinon-chai@3.7.0, sinon-chai@^3.5.0, sinon-chai@^3.7.0:
   version "3.7.0"
   resolved "https://registry.yarnpkg.com/sinon-chai/-/sinon-chai-3.7.0.tgz#cfb7dec1c50990ed18c153f1840721cf13139783"
   integrity sha512-mf5NURdUaSdnatJx3uhoBOrY9dtL19fiOtAdT1Azxg3+lNJFiuN0uzaU3xX1LeAfL17kHQhTAJgpsfhbMJMY2g==
@@ -28363,7 +28430,7 @@ sinon@7.3.2:
     nise "^1.4.10"
     supports-color "^5.5.0"
 
-sinon@7.5.0, sinon@^7.3.2:
+sinon@7.5.0:
   version "7.5.0"
   resolved "https://registry.yarnpkg.com/sinon/-/sinon-7.5.0.tgz#e9488ea466070ea908fd44a3d6478fd4923c67ec"
   integrity sha512-AoD0oJWerp0/rY9czP/D6hDTTUYGpObhZjMpd7Cl/A6+j0xBE+ayL/ldfggkBXUs0IkvIiM1ljM8+WkOc5k78Q==
@@ -28766,23 +28833,6 @@ sort-keys@^2.0.0:
   dependencies:
     is-plain-obj "^1.0.0"
 
-sort-object-keys@^1.1.3:
-  version "1.1.3"
-  resolved "https://registry.yarnpkg.com/sort-object-keys/-/sort-object-keys-1.1.3.tgz#bff833fe85cab147b34742e45863453c1e190b45"
-  integrity sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==
-
-sort-package-json@^1.22.1:
-  version "1.57.0"
-  resolved "https://registry.yarnpkg.com/sort-package-json/-/sort-package-json-1.57.0.tgz#e95fb44af8ede0bb6147e3f39258102d4bb23fc4"
-  integrity sha512-FYsjYn2dHTRb41wqnv+uEqCUvBpK3jZcTp9rbz2qDTmel7Pmdtf+i2rLaaPMRZeSVM60V3Se31GyWFpmKs4Q5Q==
-  dependencies:
-    detect-indent "^6.0.0"
-    detect-newline "3.1.0"
-    git-hooks-list "1.0.3"
-    globby "10.0.0"
-    is-plain-obj "2.1.0"
-    sort-object-keys "^1.1.3"
-
 source-list-map@^2.0.0:
   version "2.0.1"
   resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34"
@@ -29277,7 +29327,7 @@ string-template@~0.2.1:
   resolved "https://registry.yarnpkg.com/string-template/-/string-template-0.2.1.tgz#42932e598a352d01fc22ec3367d9d84eec6c9add"
   integrity sha1-QpMuWYo1LQH8IuwzZ9nYTuxsmt0=
 
-"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
+"string-width-cjs@npm:string-width@^4.2.0":
   version "4.2.3"
   resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
   integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -29303,6 +29353,15 @@ string-width@^1.0.1, string-width@^1.0.2:
     is-fullwidth-code-point "^2.0.0"
     strip-ansi "^4.0.0"
 
+"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
+  version "4.2.3"
+  resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
+  integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
+  dependencies:
+    emoji-regex "^8.0.0"
+    is-fullwidth-code-point "^3.0.0"
+    strip-ansi "^6.0.1"
+
 string-width@^3.0.0, string-width@^3.1.0:
   version "3.1.0"
   resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
@@ -29330,23 +29389,24 @@ string-width@^7.0.0:
     get-east-asian-width "^1.0.0"
     strip-ansi "^7.1.0"
 
-string.prototype.matchall@^4.0.2:
-  version "4.0.11"
-  resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz#1092a72c59268d2abaad76582dccc687c0297e0a"
-  integrity sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==
+string.prototype.matchall@^4.0.12:
+  version "4.0.12"
+  resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz#6c88740e49ad4956b1332a911e949583a275d4c0"
+  integrity sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==
   dependencies:
-    call-bind "^1.0.7"
+    call-bind "^1.0.8"
+    call-bound "^1.0.3"
     define-properties "^1.2.1"
-    es-abstract "^1.23.2"
+    es-abstract "^1.23.6"
     es-errors "^1.3.0"
     es-object-atoms "^1.0.0"
-    get-intrinsic "^1.2.4"
-    gopd "^1.0.1"
-    has-symbols "^1.0.3"
-    internal-slot "^1.0.7"
-    regexp.prototype.flags "^1.5.2"
+    get-intrinsic "^1.2.6"
+    gopd "^1.2.0"
+    has-symbols "^1.1.0"
+    internal-slot "^1.1.0"
+    regexp.prototype.flags "^1.5.3"
     set-function-name "^2.0.2"
-    side-channel "^1.0.6"
+    side-channel "^1.1.0"
 
 string.prototype.padend@^3.0.0:
   version "3.1.2"
@@ -29357,22 +29417,34 @@ string.prototype.padend@^3.0.0:
     define-properties "^1.1.3"
     es-abstract "^1.18.0-next.2"
 
-string.prototype.trim@^1.2.9:
-  version "1.2.9"
-  resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz#b6fa326d72d2c78b6df02f7759c73f8f6274faa4"
-  integrity sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==
+string.prototype.repeat@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz#e90872ee0308b29435aa26275f6e1b762daee01a"
+  integrity sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==
   dependencies:
-    call-bind "^1.0.7"
+    define-properties "^1.1.3"
+    es-abstract "^1.17.5"
+
+string.prototype.trim@^1.2.10:
+  version "1.2.10"
+  resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz#40b2dd5ee94c959b4dcfb1d65ce72e90da480c81"
+  integrity sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==
+  dependencies:
+    call-bind "^1.0.8"
+    call-bound "^1.0.2"
+    define-data-property "^1.1.4"
     define-properties "^1.2.1"
-    es-abstract "^1.23.0"
+    es-abstract "^1.23.5"
     es-object-atoms "^1.0.0"
+    has-property-descriptors "^1.0.2"
 
-string.prototype.trimend@^1.0.8:
-  version "1.0.8"
-  resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz#3651b8513719e8a9f48de7f2f77640b26652b229"
-  integrity sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==
+string.prototype.trimend@^1.0.9:
+  version "1.0.9"
+  resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz#62e2731272cd285041b36596054e9f66569b6942"
+  integrity sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==
   dependencies:
-    call-bind "^1.0.7"
+    call-bind "^1.0.8"
+    call-bound "^1.0.2"
     define-properties "^1.2.1"
     es-object-atoms "^1.0.0"
 
@@ -29413,7 +29485,7 @@ stringify-object@^3.0.0, stringify-object@^3.3.0:
     is-obj "^1.0.1"
     is-regexp "^1.0.0"
 
-"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@6.0.1, strip-ansi@^6.0.0, strip-ansi@^6.0.1:
+"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
   version "6.0.1"
   resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
   integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
@@ -29434,6 +29506,13 @@ strip-ansi@5.2.0, strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
   dependencies:
     ansi-regex "^4.1.0"
 
+strip-ansi@6.0.1, strip-ansi@^6.0.0, strip-ansi@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
+  integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
+  dependencies:
+    ansi-regex "^5.0.1"
+
 strip-ansi@^3.0.0, strip-ansi@^3.0.1:
   version "3.0.1"
   resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
@@ -29554,17 +29633,6 @@ subscriptions-transport-ws@^0.10.0:
     symbol-observable "^1.0.4"
     ws "^5.2.0 || ^6.0.0 || ^7.0.0"
 
-subscriptions-transport-ws@^0.9.18:
-  version "0.9.19"
-  resolved "https://registry.yarnpkg.com/subscriptions-transport-ws/-/subscriptions-transport-ws-0.9.19.tgz#10ca32f7e291d5ee8eb728b9c02e43c52606cdcf"
-  integrity sha512-dxdemxFFB0ppCLg10FTtRqH/31FNRL1y1BQv8209MK5I4CwALb7iihQg+7p65lFcIl8MHatINWBLOqpgU4Kyyw==
-  dependencies:
-    backo2 "^1.0.2"
-    eventemitter3 "^3.1.0"
-    iterall "^1.2.1"
-    symbol-observable "^1.0.4"
-    ws "^5.2.0 || ^6.0.0 || ^7.0.0"
-
 sucrase@^3.35.0:
   version "3.35.0"
   resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.35.0.tgz#57f17a3d7e19b36d8995f06679d121be914ae263"
@@ -30125,7 +30193,7 @@ text-mask-addons@3.8.0:
   resolved "https://registry.yarnpkg.com/text-mask-addons/-/text-mask-addons-3.8.0.tgz#17b61ef665a4f36811f2ea1f01a223b4be61ab26"
   integrity sha1-F7Ye9mWk82gR8uofAaIjtL5hqyY=
 
-text-table@^0.2.0, text-table@~0.2.0:
+text-table@~0.2.0:
   version "0.2.0"
   resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
   integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
@@ -30518,6 +30586,11 @@ ts-api-utils@^1.0.1:
   resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.3.0.tgz#4b490e27129f1e8e686b45cc4ab63714dc60eea1"
   integrity sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==
 
+ts-api-utils@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.0.0.tgz#b9d7d5f7ec9f736f4d0f09758b8607979044a900"
+  integrity sha512-xCt/TOAc+EOHS1XPnijD3/yzpH6qg2xppZO1YDqGoVsNXfQfzHpOdNuXwrwOU8u4ITXJyDCTyt8w5g1sZv9ynQ==
+
 ts-interface-checker@^0.1.9:
   version "0.1.13"
   resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699"
@@ -30597,7 +30670,7 @@ tsconfig-paths@3.10.1:
     minimist "^1.2.0"
     strip-bom "^3.0.0"
 
-tsconfig-paths@^3.12.0, tsconfig-paths@^3.15.0, tsconfig-paths@^3.9.0:
+tsconfig-paths@^3.9.0:
   version "3.15.0"
   resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz#5299ec605e55b1abb23ec939ef15edaf483070d4"
   integrity sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==
@@ -30641,11 +30714,6 @@ tslib@~2.0.1:
   resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.3.tgz#8e0741ac45fc0c226e58a17bfc3e64b9bc6ca61c"
   integrity sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==
 
-tslib@~2.1.0:
-  version "2.1.0"
-  resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz#da60860f1c2ecaa5703ab7d39bc05b6bf988b97a"
-  integrity sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==
-
 tslib@~2.2.0:
   version "2.2.0"
   resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.2.0.tgz#fb2c475977e35e241311ede2693cee1ec6698f5c"
@@ -30851,49 +30919,50 @@ type@^2.0.0:
   resolved "https://registry.yarnpkg.com/type/-/type-2.3.0.tgz#ada7c045f07ead08abf9e2edd29be1a0c0661132"
   integrity sha512-rgPIqOdfK/4J9FhiVrZ3cveAjRRo5rsQBAIhnylX874y1DX/kEKSVdLsnuHB6l1KTjHyU01VjiMBHgU2adejyg==
 
-typed-array-buffer@^1.0.2:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz#1867c5d83b20fcb5ccf32649e5e2fc7424474ff3"
-  integrity sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==
+typed-array-buffer@^1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz#a72395450a4869ec033fd549371b47af3a2ee536"
+  integrity sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==
   dependencies:
-    call-bind "^1.0.7"
+    call-bound "^1.0.3"
     es-errors "^1.3.0"
-    is-typed-array "^1.1.13"
+    is-typed-array "^1.1.14"
 
-typed-array-byte-length@^1.0.1:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz#d92972d3cff99a3fa2e765a28fcdc0f1d89dec67"
-  integrity sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==
+typed-array-byte-length@^1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz#8407a04f7d78684f3d252aa1a143d2b77b4160ce"
+  integrity sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==
   dependencies:
-    call-bind "^1.0.7"
+    call-bind "^1.0.8"
     for-each "^0.3.3"
-    gopd "^1.0.1"
-    has-proto "^1.0.3"
-    is-typed-array "^1.1.13"
+    gopd "^1.2.0"
+    has-proto "^1.2.0"
+    is-typed-array "^1.1.14"
 
-typed-array-byte-offset@^1.0.2:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz#f9ec1acb9259f395093e4567eb3c28a580d02063"
-  integrity sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==
+typed-array-byte-offset@^1.0.4:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz#ae3698b8ec91a8ab945016108aef00d5bff12355"
+  integrity sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==
   dependencies:
     available-typed-arrays "^1.0.7"
-    call-bind "^1.0.7"
+    call-bind "^1.0.8"
     for-each "^0.3.3"
-    gopd "^1.0.1"
-    has-proto "^1.0.3"
-    is-typed-array "^1.1.13"
+    gopd "^1.2.0"
+    has-proto "^1.2.0"
+    is-typed-array "^1.1.15"
+    reflect.getprototypeof "^1.0.9"
 
-typed-array-length@^1.0.6:
-  version "1.0.6"
-  resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.6.tgz#57155207c76e64a3457482dfdc1c9d1d3c4c73a3"
-  integrity sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==
+typed-array-length@^1.0.7:
+  version "1.0.7"
+  resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.7.tgz#ee4deff984b64be1e118b0de8c9c877d5ce73d3d"
+  integrity sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==
   dependencies:
     call-bind "^1.0.7"
     for-each "^0.3.3"
     gopd "^1.0.1"
-    has-proto "^1.0.3"
     is-typed-array "^1.1.13"
     possible-typed-array-names "^1.0.0"
+    reflect.getprototypeof "^1.0.6"
 
 typedarray-to-buffer@~1.0.0:
   version "1.0.4"
@@ -30914,6 +30983,15 @@ typescript-cached-transpile@^0.0.6:
     fs-extra "^8.1.0"
     tslib "^1.10.0"
 
+typescript-eslint@^8.20.0:
+  version "8.20.0"
+  resolved "https://registry.yarnpkg.com/typescript-eslint/-/typescript-eslint-8.20.0.tgz#76d4ea6a483fd49830a7e8baccaed10f76d1e57b"
+  integrity sha512-Kxz2QRFsgbWj6Xcftlw3Dd154b3cEPFqQC+qMZrMypSijPd4UanKKvoKDrJ4o8AIfZFKAF+7sMaEIR8mTElozA==
+  dependencies:
+    "@typescript-eslint/eslint-plugin" "8.20.0"
+    "@typescript-eslint/parser" "8.20.0"
+    "@typescript-eslint/utils" "8.20.0"
+
 typescript@5.3.3:
   version "5.3.3"
   resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.3.tgz#b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37"
@@ -30984,15 +31062,15 @@ ultron@~1.1.0:
   resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c"
   integrity sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==
 
-unbox-primitive@^1.0.2:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e"
-  integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==
+unbox-primitive@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.1.0.tgz#8d9d2c9edeea8460c7f35033a88867944934d1e2"
+  integrity sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==
   dependencies:
-    call-bind "^1.0.2"
+    call-bound "^1.0.3"
     has-bigints "^1.0.2"
-    has-symbols "^1.0.3"
-    which-boxed-primitive "^1.0.2"
+    has-symbols "^1.1.0"
+    which-boxed-primitive "^1.1.1"
 
 unbzip2-stream@1.4.3, unbzip2-stream@^1.4.3:
   version "1.4.3"
@@ -31193,7 +31271,7 @@ universalify@^2.0.0:
   resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717"
   integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==
 
-unixify@1.0.0, unixify@^1.0.0:
+unixify@^1.0.0:
   version "1.0.0"
   resolved "https://registry.yarnpkg.com/unixify/-/unixify-1.0.0.tgz#3a641c8c2ffbce4da683a5c70f03a462940c2090"
   integrity sha1-OmQcjC/7zk2mg6XHDwOkYpQMIJA=
@@ -31565,11 +31643,6 @@ value-or-promise@1.0.11:
   resolved "https://registry.yarnpkg.com/value-or-promise/-/value-or-promise-1.0.11.tgz#3e90299af31dd014fe843fe309cefa7c1d94b140"
   integrity sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==
 
-value-or-promise@1.0.6:
-  version "1.0.6"
-  resolved "https://registry.yarnpkg.com/value-or-promise/-/value-or-promise-1.0.6.tgz#218aa4794aa2ee24dcf48a29aba4413ed584747f"
-  integrity sha512-9r0wQsWD8z/BxPOvnwbPf05ZvFngXyouE9EKB+5GbYix+BYnAwrIChCUyFIinfbf2FL/U71z+CPpbnmTdxrwBg==
-
 vanilla-text-mask@5.1.1:
   version "5.1.1"
   resolved "https://registry.yarnpkg.com/vanilla-text-mask/-/vanilla-text-mask-5.1.1.tgz#f854819b2785191cef651e3ee94869f45855f365"
@@ -31846,7 +31919,7 @@ vue-demi@*:
   resolved "https://registry.yarnpkg.com/vue-demi/-/vue-demi-0.11.2.tgz#faa06da53887c493a695b997f4fcb4784a667990"
   integrity sha512-J+X8Au6BhQdcej6LY4O986634hZLu55L0ewU2j8my7WIKlu8cK0dqmdUxqVHHMd/cMrKKZ9SywB/id6aLhwCtA==
 
-vue-eslint-parser@7.11.0, vue-eslint-parser@^7.10.0:
+vue-eslint-parser@7.11.0:
   version "7.11.0"
   resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-7.11.0.tgz#214b5dea961007fcffb2ee65b8912307628d0daf"
   integrity sha512-qh3VhDLeh773wjgNTl7ss0VejY9bMMa0GoDG2fQVyDzRFdiU3L7fw74tWZDHNQXdZqxO3EveQroa9ct39D2nqg==
@@ -31859,6 +31932,19 @@ vue-eslint-parser@7.11.0, vue-eslint-parser@^7.10.0:
     lodash "^4.17.21"
     semver "^6.3.0"
 
+vue-eslint-parser@^9.4.3:
+  version "9.4.3"
+  resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.4.3.tgz#9b04b22c71401f1e8bca9be7c3e3416a4bde76a8"
+  integrity sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==
+  dependencies:
+    debug "^4.3.4"
+    eslint-scope "^7.1.1"
+    eslint-visitor-keys "^3.3.0"
+    espree "^9.3.1"
+    esquery "^1.4.0"
+    lodash "^4.17.21"
+    semver "^7.3.6"
+
 vue-i18n@9.13.1:
   version "9.13.1"
   resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-9.13.1.tgz#a292c8021b7be604ebfca5609ae1f8fafe5c36d7"
@@ -32297,26 +32383,45 @@ whatwg-url@^7.0.0:
     tr46 "^1.0.1"
     webidl-conversions "^4.0.2"
 
-which-boxed-primitive@^1.0.2:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
-  integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
+which-boxed-primitive@^1.0.2, which-boxed-primitive@^1.1.0, which-boxed-primitive@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz#d76ec27df7fa165f18d5808374a5fe23c29b176e"
+  integrity sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==
   dependencies:
-    is-bigint "^1.0.1"
-    is-boolean-object "^1.1.0"
-    is-number-object "^1.0.4"
-    is-string "^1.0.5"
-    is-symbol "^1.0.3"
+    is-bigint "^1.1.0"
+    is-boolean-object "^1.2.1"
+    is-number-object "^1.1.1"
+    is-string "^1.1.1"
+    is-symbol "^1.1.1"
 
-which-collection@^1.0.1:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906"
-  integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==
+which-builtin-type@^1.2.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.2.1.tgz#89183da1b4907ab089a6b02029cc5d8d6574270e"
+  integrity sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==
   dependencies:
-    is-map "^2.0.1"
-    is-set "^2.0.1"
-    is-weakmap "^2.0.1"
-    is-weakset "^2.0.1"
+    call-bound "^1.0.2"
+    function.prototype.name "^1.1.6"
+    has-tostringtag "^1.0.2"
+    is-async-function "^2.0.0"
+    is-date-object "^1.1.0"
+    is-finalizationregistry "^1.1.0"
+    is-generator-function "^1.0.10"
+    is-regex "^1.2.1"
+    is-weakref "^1.0.2"
+    isarray "^2.0.5"
+    which-boxed-primitive "^1.1.0"
+    which-collection "^1.0.2"
+    which-typed-array "^1.1.16"
+
+which-collection@^1.0.1, which-collection@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz#627ef76243920a107e7ce8e96191debe4b16c2a0"
+  integrity sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==
+  dependencies:
+    is-map "^2.0.3"
+    is-set "^2.0.3"
+    is-weakmap "^2.0.2"
+    is-weakset "^2.0.3"
 
 which-module@^1.0.0:
   version "1.0.0"
@@ -32333,15 +32438,16 @@ which-pm-runs@^1.0.0:
   resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb"
   integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=
 
-which-typed-array@^1.1.13, which-typed-array@^1.1.14, which-typed-array@^1.1.15, which-typed-array@^1.1.2:
-  version "1.1.15"
-  resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.15.tgz#264859e9b11a649b388bfaaf4f767df1f779b38d"
-  integrity sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==
+which-typed-array@^1.1.13, which-typed-array@^1.1.16, which-typed-array@^1.1.18, which-typed-array@^1.1.2:
+  version "1.1.18"
+  resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.18.tgz#df2389ebf3fbb246a71390e90730a9edb6ce17ad"
+  integrity sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==
   dependencies:
     available-typed-arrays "^1.0.7"
-    call-bind "^1.0.7"
+    call-bind "^1.0.8"
+    call-bound "^1.0.3"
     for-each "^0.3.3"
-    gopd "^1.0.1"
+    gopd "^1.2.0"
     has-tostringtag "^1.0.2"
 
 which@1.3.1, which@^1.1.1, which@^1.2.14, which@^1.2.4, which@^1.2.8, which@^1.2.9:
@@ -32468,7 +32574,7 @@ workerpool@6.2.0:
   resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.2.0.tgz#827d93c9ba23ee2019c3ffaff5c27fccea289e8b"
   integrity sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A==
 
-"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
+"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
   version "7.0.0"
   resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
   integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
@@ -32511,6 +32617,15 @@ wrap-ansi@^6.2.0:
     string-width "^4.1.0"
     strip-ansi "^6.0.0"
 
+wrap-ansi@^7.0.0:
+  version "7.0.0"
+  resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
+  integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
+  dependencies:
+    ansi-styles "^4.0.0"
+    string-width "^4.1.0"
+    strip-ansi "^6.0.0"
+
 wrap-ansi@^8.0.1, wrap-ansi@^8.1.0:
   version "8.1.0"
   resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"
@@ -32596,11 +32711,6 @@ ws@5.2.4:
   dependencies:
     async-limiter "~1.0.0"
 
-ws@7.4.5, ws@~7.4.2:
-  version "7.4.5"
-  resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.5.tgz#a484dd851e9beb6fdb420027e3885e8ce48986c1"
-  integrity sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g==
-
 ws@8.14.1:
   version "8.14.1"
   resolved "https://registry.yarnpkg.com/ws/-/ws-8.14.1.tgz#4b9586b4f70f9e6534c7bb1d3dc0baa8b8cf01e0"
@@ -32621,6 +32731,11 @@ ws@^8.0.0, ws@^8.13.0, ws@^8.18.0, ws@^8.5.0, ws@^8.8.0:
   resolved "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc"
   integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==
 
+ws@~7.4.2:
+  version "7.4.5"
+  resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.5.tgz#a484dd851e9beb6fdb420027e3885e8ce48986c1"
+  integrity sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g==
+
 ws@~8.11.0:
   version "8.11.0"
   resolved "https://registry.yarnpkg.com/ws/-/ws-8.11.0.tgz#6a0d36b8edfd9f96d8b25683db2f8d7de6e8e143"
@@ -32654,6 +32769,11 @@ xhr@^2.0.1:
     parse-headers "^2.0.0"
     xtend "^4.0.0"
 
+xml-name-validator@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835"
+  integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==
+
 xml-parse-from-string@^1.0.0:
   version "1.0.1"
   resolved "https://registry.yarnpkg.com/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz#a9029e929d3dbcded169f3c6e28238d95a5d5a28"

From 920e1c7cfbb05ba76e5f9f32637672abc45a3905 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 13:48:59 -0500
Subject: [PATCH 003/127] use updated eslint for ./scripts

---
 .eslintrc.js     | 109 -----------------------------------
 eslint.config.ts |  80 ++++++++++++++++++++++++++
 package.json     | 147 +++++++++++++++++++++++------------------------
 3 files changed, 153 insertions(+), 183 deletions(-)
 delete mode 100644 .eslintrc.js
 create mode 100644 eslint.config.ts

diff --git a/.eslintrc.js b/.eslintrc.js
deleted file mode 100644
index 94dcd6358b39..000000000000
--- a/.eslintrc.js
+++ /dev/null
@@ -1,109 +0,0 @@
-const fs = require('fs')
-const path = require('path')
-const { specifiedRules } = require('graphql')
-
-const graphqlOpts = {
-  env: 'literal',
-  tagName: 'gql',
-  // eslint-disable-next-line no-restricted-syntax
-  schemaString: fs.readFileSync(
-    path.join(__dirname, 'packages/graphql/schemas/schema.graphql'),
-    'utf8',
-  ),
-}
-
-const validators = specifiedRules
-.map((rule) => rule.name)
-.filter(
-  (ruleName) => {
-    return [
-      'NoUnusedFragmentsRule',
-      'KnownFragmentNamesRule',
-      'NoUnusedVariablesRule',
-    ].findIndex((x) => x === ruleName) === -1
-  },
-)
-
-module.exports = {
-  root: true,
-  plugins: [
-    '@cypress/dev',
-    'graphql',
-  ],
-  extends: [
-    'plugin:@cypress/dev/general',
-    'plugin:@cypress/dev/tests',
-  ],
-  parser: '@typescript-eslint/parser',
-  ignorePatterns: [
-    // cli types are checked by dtslint
-    'cli/types/**',
-    // these fixtures are supposed to fail linting
-    'npm/eslint-plugin-dev/test/fixtures/**',
-    // Cloud generated
-    'system-tests/lib/validations/**',
-  ],
-  overrides: [
-    {
-      files: [
-        // ignore in tests and scripts
-        '**/scripts/**',
-        '**/test/**',
-        '**/system-tests/**',
-        'tooling/**',
-        'packages/{app,driver,frontend-shared,launchpad}/cypress/**',
-        '*.test.ts',
-      ],
-      rules: {
-        'no-restricted-properties': 'off',
-        'no-restricted-syntax': 'off',
-      },
-    },
-    {
-      files: ['*.json'],
-      extends: 'plugin:@cypress/dev/general',
-    },
-  ],
-  rules: {
-    'no-duplicate-imports': 'off',
-    'import/no-duplicates': 'error',
-    'prefer-spread': 'off',
-    'prefer-rest-params': 'off',
-    'no-useless-constructor': 'off',
-    'no-restricted-properties': [
-      'error',
-      {
-        object: 'process',
-        property: 'geteuid',
-        message: 'process.geteuid() will throw on Windows. Do not use it unless you catch any potential errors.',
-      },
-      {
-        object: 'os',
-        property: 'userInfo',
-        message: 'os.userInfo() will throw when there is not an `/etc/passwd` entry for the current user (like when running with --user 12345 in Docker). Do not use it unless you catch any potential errors.',
-      },
-    ],
-    'no-restricted-syntax': [
-      // esquery tool: https://estools.github.io/esquery/
-      'error',
-      {
-        // match sync FS methods except for `existsSync`
-        // examples: fse.readFileSync, fs.readFileSync, this.ctx.fs.readFileSync...
-        selector: `MemberExpression[object.name='fs'][property.name=/^[A-z]+Sync$/]:not(MemberExpression[property.name='existsSync']), MemberExpression[property.name=/^[A-z]+Sync$/]:not(MemberExpression[property.name='existsSync']):has(MemberExpression[property.name='fs'])`,
-        message: 'Synchronous fs calls should not be used in Cypress. Use an async API instead.',
-      },
-    ],
-    'graphql/capitalized-type-name': ['warn', graphqlOpts],
-    'graphql/no-deprecated-fields': ['error', graphqlOpts],
-    'graphql/template-strings': ['error', { ...graphqlOpts, validators }],
-    'graphql/required-fields': [
-      'error',
-      { ...graphqlOpts, requiredFields: ['id'] },
-    ],
-  },
-  settings: {
-    react: {
-      version: '16.8',
-    },
-  },
-}
diff --git a/eslint.config.ts b/eslint.config.ts
new file mode 100644
index 000000000000..bafedb53bc88
--- /dev/null
+++ b/eslint.config.ts
@@ -0,0 +1,80 @@
+import js from '@eslint/js'
+import ts, { InfiniteDepthConfigWithExtends } from 'typescript-eslint'
+import cy from 'eslint-plugin-cypress/flat'
+import mocha from 'eslint-plugin-mocha'
+import type { Linter } from 'eslint'
+import globals from 'globals'
+import path from 'path'
+
+/**
+ * baseConfig should be imported by other packages that define their own eslint.config.ts
+ * tsLanguageOptions may be shared, but is probably unnecessary
+ * the default config exported from this file applies to
+ *   - ./scripts/*
+ */
+
+export const baseConfig: InfiniteDepthConfigWithExtends[] = [
+  js.configs.recommended, 
+  ...ts.configs.recommended,
+  cy.configs.recommended,
+  mocha.configs.flat.recommended,
+  {
+    // rules that are gold standard, but have many violations
+    // these are off while developing eslint, but will be set to warn
+    rules: {
+      '@typescript-eslint/no-unused-expressions': 'off',
+      '@typescript-eslint/no-require-imports': 'off',
+      '@typescript-eslint/no-unused-vars': 'off',
+      'no-useless-escape': 'off',
+      '@typescript-eslint/no-unsafe-function-type': 'off',
+      'prefer-const': 'off',
+      'prefer-rest-params': 'off',
+      '@typescript-eslint/ban-ts-comment': 'off',
+      '@typescript-eslint/no-namespace': 'off',
+      '@typescript-eslint/no-explicit-any': 'off',
+      'no-prototype-builtins': 'off',
+      '@typescript-eslint/no-this-alias': 'off',
+    },
+  },
+
+  // conflicting mocha rules
+  {
+    rules: {
+      'mocha/no-mocha-arrows': 'off',
+      'mocha/no-setup-in-describe': 'off', //warn
+      'mocha/max-top-level-suites': 'off', // warn
+      'mocha/no-top-level-hooks': 'off', //warn
+      'mocha/no-identical-title': 'off', // warn
+      'mocha/consistent-spacing-between-blocks': 'off',
+    }
+  }
+]
+
+
+export default ts.config(
+  ...baseConfig,
+  {
+    ignores: [
+      'npm/**/*',
+      'packages/**/*',
+      'system-tests/**/*',
+      'tooling/**/*',
+      'cli/**/*',
+      '**/__snapshots__/**/*',
+      '.nx/**/*',
+      '.releaserc.js'
+    ]
+  },
+  {
+    files: ['**/*.ts', '**/*.js'],
+    languageOptions: {
+      parserOptions: {
+        projectService: true,
+        tsconfigRootDir: path.join(__dirname, './ts/tsconfig')
+      },
+      globals: {
+        ...globals.node,
+      }
+    }
+  }
+)
\ No newline at end of file
diff --git a/package.json b/package.json
index e2bc39dd78bb..76d014d92839 100644
--- a/package.json
+++ b/package.json
@@ -1,8 +1,53 @@
 {
   "name": "cypress",
   "version": "13.17.0",
-  "description": "Cypress is a next generation front end testing tool built for the modern web",
   "private": true,
+  "description": "Cypress is a next generation front end testing tool built for the modern web",
+  "keywords": [
+    "automation",
+    "browser",
+    "cypress",
+    "cypress.io",
+    "e2e",
+    "end-to-end",
+    "integration",
+    "component",
+    "mocks",
+    "runner",
+    "spies",
+    "stubs",
+    "test",
+    "testing"
+  ],
+  "homepage": "https://cypress.io",
+  "bugs": {
+    "url": "https://github.com/cypress-io/cypress/issues"
+  },
+  "repository": {
+    "type": "git",
+    "url": "https://github.com/cypress-io/cypress.git"
+  },
+  "license": "MIT",
+  "workspaces": {
+    "packages": [
+      "cli",
+      "packages/*",
+      "npm/*",
+      "tooling/*",
+      "system-tests",
+      "scripts"
+    ],
+    "nohoist": [
+      "**/@wdio/*",
+      "**/webpack-preprocessor/babel-loader",
+      "**/webpack-preprocessor/**/merge-source-map",
+      "**/webpack-preprocessor/**/patch-package",
+      "**/webpack-batteries-included-preprocessor/ts-loader",
+      "**/jest",
+      "**/jest*",
+      "**/expect"
+    ]
+  },
   "scripts": {
     "binary-build": "cross-env NODE_OPTIONS=--max_old_space_size=8192 node ./scripts/binary.js build",
     "binary-deploy": "node ./scripts/binary.js deploy",
@@ -63,19 +108,38 @@
     "test-scripts-watch": "yarn test-scripts --watch --watch-extensions 'ts,js'",
     "test-system": "yarn workspace @tooling/system-tests test",
     "pretest-unit": "yarn ensure-deps",
-    "test-unit": "lerna exec yarn test-unit --ignore={@packages/{driver,root,static,web-config,net-stubbing,rewriter},@cypress/{webpack-dev-server,eslint-plugin-dev}}",
+    "test-unit": "lerna exec yarn test-unit --ignore={@packages/{driver,root,static,web-config,net-stubbing,rewriter},@cypress/{webpack-dev-server}}",
     "pretest-watch": "yarn ensure-deps",
     "test-watch": "lerna exec yarn test-watch --ignore=@packages/{driver,root,static,web-config}",
     "type-check": "yarn lerna exec yarn type-check --scope=@tooling/system-tests && node scripts/type_check",
     "verify:mocha:results": "node ./scripts/verify-mocha-results",
     "watch": "yarn gulp watch"
   },
+  "lint-staged": {
+    "*.coffee": "yarn stop-only --folder",
+    "*.{js,jsx,ts,tsx,json,eslintrc,vue}": "eslint --fix"
+  },
+  "resolutions": {
+    "**/@types/cheerio": "0.22.21",
+    "**/@types/enzyme": "3.10.5",
+    "**/@wdio/logger": "9.0.0",
+    "**/jquery": "3.7.1",
+    "**/pretty-format": "26.4.0",
+    "**/sharp": "0.29.3",
+    "**/socket.io-parser": "4.0.5",
+    "**/ua-parser-js": "0.7.33",
+    "browserify-sign": "4.2.2",
+    "devtools-protocol": "0.0.1346313",
+    "sharp": "0.29.3",
+    "vue-template-compiler": "2.6.12"
+  },
   "devDependencies": {
     "@aws-sdk/client-s3": "3.485.0",
     "@aws-sdk/credential-providers": "3.53.0",
     "@babel/eslint-parser": "7.25.1",
     "@cypress/request": "^3.0.6",
     "@cypress/request-promise": "^5.0.0",
+    "@eslint/js": "^9.18.0",
     "@electron/fuses": "1.8.0",
     "@electron/notarize": "^2.5.0",
     "@fellow/eslint-plugin-coffee": "0.4.13",
@@ -144,20 +208,15 @@
     "electron": "33.2.1",
     "electron-builder": "^25.1.8",
     "enzyme-adapter-react-16": "1.12.1",
-    "eslint": "^8.56.0",
-    "eslint-plugin-cypress": "3.5.0",
-    "eslint-plugin-graphql": "4.0.0",
-    "eslint-plugin-import": "2.25.4",
-    "eslint-plugin-json-format": "2.0.1",
-    "eslint-plugin-mocha": "8.2.0",
-    "eslint-plugin-react": "7.22.0",
-    "eslint-plugin-react-hooks": "4.2.0",
-    "eslint-plugin-vue": "7.18.0",
+    "eslint": "^9.18.0",
+    "eslint-plugin-cypress": "^4.1.0",
+    "eslint-plugin-mocha": "^10.5.0",
     "execa": "4.0.0",
     "filesize": "10.1.1",
     "fs-extra": "9.1.0",
     "getenv": "^1.0.0",
     "glob": "7.1.6",
+    "globals": "^15.14.0",
     "graphql": "^15.5.1",
     "graphql-executor": "0.0.23",
     "gulp": "4.0.2",
@@ -170,6 +229,7 @@
     "husky": "7.0.2",
     "inquirer": "8.2.4",
     "inquirer-confirm": "2.0.3",
+    "jiti": "^2.4.2",
     "lazy-ass": "1.6.0",
     "lerna": "8.1.8",
     "lint-staged": "11.1.2",
@@ -209,6 +269,7 @@
     "tree-kill": "1.2.2",
     "ts-node": "^10.9.2",
     "typescript": "5.3.3",
+    "typescript-eslint": "^8.20.0",
     "yarn-deduplicate": "3.1.0"
   },
   "engines": {
@@ -216,67 +277,5 @@
     "yarn": ">=1.22.22"
   },
   "productName": "Cypress",
-  "license": "MIT",
-  "repository": {
-    "type": "git",
-    "url": "https://github.com/cypress-io/cypress.git"
-  },
-  "homepage": "https://cypress.io",
-  "bugs": {
-    "url": "https://github.com/cypress-io/cypress/issues"
-  },
-  "keywords": [
-    "automation",
-    "browser",
-    "cypress",
-    "cypress.io",
-    "e2e",
-    "end-to-end",
-    "integration",
-    "component",
-    "mocks",
-    "runner",
-    "spies",
-    "stubs",
-    "test",
-    "testing"
-  ],
-  "workspaces": {
-    "packages": [
-      "cli",
-      "packages/*",
-      "npm/*",
-      "tooling/*",
-      "system-tests",
-      "scripts"
-    ],
-    "nohoist": [
-      "**/@wdio/*",
-      "**/webpack-preprocessor/babel-loader",
-      "**/webpack-preprocessor/**/merge-source-map",
-      "**/webpack-preprocessor/**/patch-package",
-      "**/webpack-batteries-included-preprocessor/ts-loader",
-      "**/jest",
-      "**/jest*",
-      "**/expect"
-    ]
-  },
-  "lint-staged": {
-    "*.coffee": "yarn stop-only --folder",
-    "*.{js,jsx,ts,tsx,json,eslintrc,vue}": "eslint --fix"
-  },
-  "resolutions": {
-    "**/@types/cheerio": "0.22.21",
-    "**/@types/enzyme": "3.10.5",
-    "**/@wdio/logger": "9.0.0",
-    "**/jquery": "3.7.1",
-    "**/pretty-format": "26.4.0",
-    "**/sharp": "0.29.3",
-    "**/socket.io-parser": "4.0.5",
-    "**/ua-parser-js": "0.7.33",
-    "browserify-sign": "4.2.2",
-    "devtools-protocol": "0.0.1346313",
-    "sharp": "0.29.3",
-    "vue-template-compiler": "2.6.12"
-  }
+  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
 }

From 00f124358226ea5a3c42fbf3f31baf3290362c5f Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 13:49:27 -0500
Subject: [PATCH 004/127] use new eslint for cli

---
 cli/.eslintignore    | 16 ------------
 cli/.eslintrc.json   | 19 --------------
 cli/eslint.config.ts | 62 ++++++++++++++++++++++++++++++++++++++++++++
 cli/package.json     |  2 +-
 4 files changed, 63 insertions(+), 36 deletions(-)
 delete mode 100644 cli/.eslintignore
 delete mode 100644 cli/.eslintrc.json
 create mode 100644 cli/eslint.config.ts

diff --git a/cli/.eslintignore b/cli/.eslintignore
deleted file mode 100644
index 90471aa76fd3..000000000000
--- a/cli/.eslintignore
+++ /dev/null
@@ -1,16 +0,0 @@
-**/__snapshots__
-/build
-
-# do not lint package.json, it incorrect re-orders the `exports`
-# https://github.com/cypress-io/cypress/pull/26630
-package.json
-
-# cli/types is linted by tslint/dtslint
-/types
-
-# these are all copied from dist'd builds from the individual libs
-/angular
-/react
-/vue
-/svelte
-/mount-utils
\ No newline at end of file
diff --git a/cli/.eslintrc.json b/cli/.eslintrc.json
deleted file mode 100644
index c3cecddc84c3..000000000000
--- a/cli/.eslintrc.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-  "rules": {
-    "no-restricted-syntax": [
-      "error",
-      {
-        "selector": "CallExpression[callee.name='arch']",
-        "message": "Do not use `arch()` to detect the user's machine architecture. Use util.getRealArch() instead."
-      },
-      {
-        "selector": "CallExpression[callee.object.name='os'][callee.property.name='arch']",
-        "message": "Do not use `os.arch()` to detect the user's machine architecture. Use util.getRealArch() instead."
-      },
-      {
-        "selector": "MemberExpression[object.name='process'][property.name='arch']",
-        "message": "Do not use `process.arch` to detect the user's machine architecture. Use util.getRealArch() instead."
-      }
-    ]
-  }
-}
diff --git a/cli/eslint.config.ts b/cli/eslint.config.ts
new file mode 100644
index 000000000000..9bf8d3c40d11
--- /dev/null
+++ b/cli/eslint.config.ts
@@ -0,0 +1,62 @@
+/*
+{
+  "rules": {
+    "no-restricted-syntax": [
+      "error",
+      {
+        "selector": "CallExpression[callee.name='arch']",
+        "message": "Do not use `arch()` to detect the user's machine architecture. Use util.getRealArch() instead."
+      },
+      {
+        "selector": "CallExpression[callee.object.name='os'][callee.property.name='arch']",
+        "message": "Do not use `os.arch()` to detect the user's machine architecture. Use util.getRealArch() instead."
+      },
+      {
+        "selector": "MemberExpression[object.name='process'][property.name='arch']",
+        "message": "Do not use `process.arch` to detect the user's machine architecture. Use util.getRealArch() instead."
+      }
+    ]
+  }
+}
+*/
+import path from 'path'
+import { baseConfig } from "../eslint.config"
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+    files: ['**/*.{ts,js}'],
+    languageOptions: {
+      parserOptions: {
+        projectService: true,
+        tsconfigRootDir: path.join(__dirname, '../packages/ts/tsconfig.json'),
+      },
+      globals: {
+        ...globals.node
+      }
+    }
+  },
+  {
+    ignores: [
+      '__snapshots__/**/*',
+      'angular/**/*',
+      'build/**/*',
+      'mount-utils/**/*',
+      'node_modules/**/*',
+      'react/**/*',
+      'svelte/**/*',
+      'vue/**/*',
+      'types/**/*',
+    ]
+  },
+  {
+    files: ['test/**/*.{ts,js}'],
+    languageOptions: {
+      globals: {
+        sinon: 'readonly',
+        lib: 'readonly',
+      }
+    }
+  }
+]
\ No newline at end of file
diff --git a/cli/package.json b/cli/package.json
index 62377435c439..be8b87f37071 100644
--- a/cli/package.json
+++ b/cli/package.json
@@ -8,7 +8,7 @@
     "clean": "node ./scripts/clean.js",
     "dtslint": "dtslint types",
     "postinstall": "patch-package && node ./scripts/post-install.js",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json,.vue .",
+    "lint": "eslint .",
     "prebuild": "yarn postinstall && node ./scripts/start-build.js",
     "size": "t=\"cypress-v0.0.0.tgz\"; yarn pack --filename \"${t}\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
     "test": "yarn test-unit",

From 7c30ac8c8c55965104d7acfe0fb22fcf90b1b4a8 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 13:57:24 -0500
Subject: [PATCH 005/127] npm/angular linting

---
 eslint.config.ts             | 12 ++++++++++--
 npm/angular/.eslintignore    |  5 -----
 npm/angular/.eslintrc        |  8 --------
 npm/angular/eslint.config.ts | 24 ++++++++++++++++++++++++
 npm/angular/package.json     |  2 +-
 5 files changed, 35 insertions(+), 16 deletions(-)
 delete mode 100644 npm/angular/.eslintignore
 delete mode 100644 npm/angular/.eslintrc
 create mode 100644 npm/angular/eslint.config.ts

diff --git a/eslint.config.ts b/eslint.config.ts
index bafedb53bc88..4ae81abb6bd9 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -47,6 +47,14 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       'mocha/no-identical-title': 'off', // warn
       'mocha/consistent-spacing-between-blocks': 'off',
     }
+  },
+
+  // common file patterns to ignore
+  {
+    ignores: [
+      '.releaserc.js',
+      'dist/**/*',
+    ]
   }
 ]
 
@@ -66,11 +74,11 @@ export default ts.config(
     ]
   },
   {
-    files: ['**/*.ts', '**/*.js'],
+    files: ['**/*.{ts,js}'],
     languageOptions: {
       parserOptions: {
         projectService: true,
-        tsconfigRootDir: path.join(__dirname, './ts/tsconfig')
+        tsconfigRootDir: path.join(__dirname, './ts')
       },
       globals: {
         ...globals.node,
diff --git a/npm/angular/.eslintignore b/npm/angular/.eslintignore
deleted file mode 100644
index 79afe972da7d..000000000000
--- a/npm/angular/.eslintignore
+++ /dev/null
@@ -1,5 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
\ No newline at end of file
diff --git a/npm/angular/.eslintrc b/npm/angular/.eslintrc
deleted file mode 100644
index f044f320923e..000000000000
--- a/npm/angular/.eslintrc
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-  "plugins": [
-    "cypress"
-  ],
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ]
-}
diff --git a/npm/angular/eslint.config.ts b/npm/angular/eslint.config.ts
new file mode 100644
index 000000000000..339d3f6c8bd9
--- /dev/null
+++ b/npm/angular/eslint.config.ts
@@ -0,0 +1,24 @@
+import { baseConfig } from '../../eslint.config'
+import path from 'path'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['dist/**']
+  },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts', 'rollup.config.mjs'],
+        },
+        tsconfigRootDir: path.join(__dirname, '.'),
+
+      },
+      globals: {
+        ...globals.browser,
+      }
+    }
+  }
+]
\ No newline at end of file
diff --git a/npm/angular/package.json b/npm/angular/package.json
index a2b02d0cecf4..7409d42028c7 100644
--- a/npm/angular/package.json
+++ b/npm/angular/package.json
@@ -9,7 +9,7 @@
     "postbuild": "node ../../scripts/sync-exported-npm-with-cli.js",
     "check-ts": "tsc --noEmit",
     "dev": "rollup -c rollup.config.mjs -w",
-    "lint": "eslint --ext .js,.ts,.json, ."
+    "lint": "eslint ."
   },
   "dependencies": {},
   "devDependencies": {

From 0a7039bc0ba1f9fb3218d364642bb403074291a2 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 14:17:39 -0500
Subject: [PATCH 006/127] cypress-schematic eslint

---
 npm/cypress-schematic/.eslintignore        |  5 -----
 npm/cypress-schematic/.eslintrc            | 16 ---------------
 npm/cypress-schematic/eslint-tsconfig.json |  7 +++++++
 npm/cypress-schematic/eslint.config.ts     | 23 ++++++++++++++++++++++
 npm/cypress-schematic/tsconfig.json        |  3 +--
 5 files changed, 31 insertions(+), 23 deletions(-)
 delete mode 100644 npm/cypress-schematic/.eslintignore
 delete mode 100644 npm/cypress-schematic/.eslintrc
 create mode 100644 npm/cypress-schematic/eslint-tsconfig.json
 create mode 100644 npm/cypress-schematic/eslint.config.ts

diff --git a/npm/cypress-schematic/.eslintignore b/npm/cypress-schematic/.eslintignore
deleted file mode 100644
index 79afe972da7d..000000000000
--- a/npm/cypress-schematic/.eslintignore
+++ /dev/null
@@ -1,5 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
\ No newline at end of file
diff --git a/npm/cypress-schematic/.eslintrc b/npm/cypress-schematic/.eslintrc
deleted file mode 100644
index 0e5150fbeb8f..000000000000
--- a/npm/cypress-schematic/.eslintrc
+++ /dev/null
@@ -1,16 +0,0 @@
-{
-  "plugins": [
-    "cypress",
-    "@cypress/dev"
-  ],
-  "extends": [
-    "plugin:@cypress/dev/general"
-  ],
-  "parser": "@typescript-eslint/parser",
-  "env": {
-    "cypress/globals": true
-  },
-  "rules": {
-    "no-console": "off"
-  }
-}
\ No newline at end of file
diff --git a/npm/cypress-schematic/eslint-tsconfig.json b/npm/cypress-schematic/eslint-tsconfig.json
new file mode 100644
index 000000000000..8a96a8471f69
--- /dev/null
+++ b/npm/cypress-schematic/eslint-tsconfig.json
@@ -0,0 +1,7 @@
+{
+  "extends": "./tsconfig.json",
+  "include": [
+    "src/**/*"
+  ],
+  "exclude":  ["!src/**/files-core/**/*", "!src/**/files-ct/**/*", "!src/**/*.spec.ts"]
+}
\ No newline at end of file
diff --git a/npm/cypress-schematic/eslint.config.ts b/npm/cypress-schematic/eslint.config.ts
new file mode 100644
index 000000000000..5822704c0bd2
--- /dev/null
+++ b/npm/cypress-schematic/eslint.config.ts
@@ -0,0 +1,23 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+import path from 'path'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['src/**/*.{js,js.map,d.ts}', 'src/schematics/cypress/files/cypress/plugins/*.js']
+  },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts', 'projects/sandbox/src/fake-component.component.ts']
+        },
+        project: './tsconfig.json',
+      },
+      globals: {
+        ...globals.node,
+      }
+    }
+  }
+]
\ No newline at end of file
diff --git a/npm/cypress-schematic/tsconfig.json b/npm/cypress-schematic/tsconfig.json
index 798d992aa8ec..f5ba49335784 100644
--- a/npm/cypress-schematic/tsconfig.json
+++ b/npm/cypress-schematic/tsconfig.json
@@ -22,10 +22,9 @@
     "target": "es6",
     "types": [
       "node"
-    ]
+    ],
   },
   "include": [
     "src/**/*"
   ],
-  "exclude": ["src/**/files-core/**/*", "src/**/files-ct/**/*", "src/**/*.spec.ts"]
 }

From 3f44b019ffd73a96c655a5ea936840bfbbb34481 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 14:27:54 -0500
Subject: [PATCH 007/127] eslint for npm/grep

---
 eslint.config.ts                           |  3 +++
 npm/grep/.eslintrc                         | 16 ----------------
 npm/grep/cypress/e2e/omit-and-skip-spec.js |  1 -
 npm/grep/cypress/e2e/skip-spec.js          |  1 -
 npm/grep/eslint.config.ts                  | 22 ++++++++++++++++++++++
 npm/grep/package.json                      |  2 +-
 6 files changed, 26 insertions(+), 19 deletions(-)
 delete mode 100644 npm/grep/.eslintrc
 create mode 100644 npm/grep/eslint.config.ts

diff --git a/eslint.config.ts b/eslint.config.ts
index 4ae81abb6bd9..aa6959c16f3f 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -34,6 +34,8 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       '@typescript-eslint/no-explicit-any': 'off',
       'no-prototype-builtins': 'off',
       '@typescript-eslint/no-this-alias': 'off',
+      '@typescript-eslint/triple-slash-reference': 'off',
+      'no-global-assign': 'off',
     },
   },
 
@@ -46,6 +48,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       'mocha/no-top-level-hooks': 'off', //warn
       'mocha/no-identical-title': 'off', // warn
       'mocha/consistent-spacing-between-blocks': 'off',
+      'mocha/no-global-tests': 'off',
     }
   },
 
diff --git a/npm/grep/.eslintrc b/npm/grep/.eslintrc
deleted file mode 100644
index 667197d7aa46..000000000000
--- a/npm/grep/.eslintrc
+++ /dev/null
@@ -1,16 +0,0 @@
-{
-  "plugins": [
-    "cypress"
-  ],
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ],
-  "env": {
-    "cypress/globals": true
-  },
-  "rules": {
-    "mocha/no-global-tests": "off",
-    "no-console": "off",
-    "no-restricted-syntax": "off"
-  }
-}
diff --git a/npm/grep/cypress/e2e/omit-and-skip-spec.js b/npm/grep/cypress/e2e/omit-and-skip-spec.js
index 253ad35be4c6..4c3a029f42a7 100644
--- a/npm/grep/cypress/e2e/omit-and-skip-spec.js
+++ b/npm/grep/cypress/e2e/omit-and-skip-spec.js
@@ -3,7 +3,6 @@
 // @ts-check
 describe('Page', () => {
   describe('List', { tags: ['@us1'] }, () => {
-    // eslint-disable-next-line @cypress/dev/skip-comment
     it.skip('first test', () => {})
     it('second test', () => {})
     it('third test', () => {})
diff --git a/npm/grep/cypress/e2e/skip-spec.js b/npm/grep/cypress/e2e/skip-spec.js
index 3ca63e02df46..0aa964e482c3 100644
--- a/npm/grep/cypress/e2e/skip-spec.js
+++ b/npm/grep/cypress/e2e/skip-spec.js
@@ -1,4 +1,3 @@
-/* eslint-disable @cypress/dev/skip-comment */
 /// <reference types="cypress" />
 describe('tests that use .skip', () => {
   // use a template literal
diff --git a/npm/grep/eslint.config.ts b/npm/grep/eslint.config.ts
new file mode 100644
index 000000000000..2063e1ce99ac
--- /dev/null
+++ b/npm/grep/eslint.config.ts
@@ -0,0 +1,22 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+export default [
+  ...baseConfig,
+  {
+    languageOptions: {
+      globals: {
+        ...globals['shared-node-browser'],
+        require: 'readonly',
+        module: 'readonly',
+      },
+    },
+  },
+  {
+    files: ['expects/test-npm-module.js', 'src/plugin.js'],
+    languageOptions: {
+      globals: {
+        process: 'readonly',
+      }
+    }
+  }
+]
\ No newline at end of file
diff --git a/npm/grep/package.json b/npm/grep/package.json
index 7cb5f8ae95b6..e7605b9c184f 100644
--- a/npm/grep/package.json
+++ b/npm/grep/package.json
@@ -6,7 +6,7 @@
   "scripts": {
     "cy:open": "node ../../scripts/cypress.js open --e2e -b electron --config specPattern='**/unit.js'",
     "cy:run": "node ../../scripts/cypress.js run --config specPattern='**/unit.js'",
-    "lint": "eslint . --ext .js,.ts"
+    "lint": "eslint ."
   },
   "dependencies": {
     "debug": "^4.3.4",

From 6d821ab8872aebc62b9d08e67cba498e093d1160 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 14:33:54 -0500
Subject: [PATCH 008/127] npm/mount-utils

---
 npm/mount-utils/.eslintignore    | 5 -----
 npm/mount-utils/eslint.config.ts | 9 +++++++++
 npm/mount-utils/package.json     | 2 +-
 3 files changed, 10 insertions(+), 6 deletions(-)
 delete mode 100644 npm/mount-utils/.eslintignore
 create mode 100644 npm/mount-utils/eslint.config.ts

diff --git a/npm/mount-utils/.eslintignore b/npm/mount-utils/.eslintignore
deleted file mode 100644
index 79afe972da7d..000000000000
--- a/npm/mount-utils/.eslintignore
+++ /dev/null
@@ -1,5 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
\ No newline at end of file
diff --git a/npm/mount-utils/eslint.config.ts b/npm/mount-utils/eslint.config.ts
new file mode 100644
index 000000000000..b8ac3635181b
--- /dev/null
+++ b/npm/mount-utils/eslint.config.ts
@@ -0,0 +1,9 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['dist/**/*', '**/*.d.ts']
+  }
+]
\ No newline at end of file
diff --git a/npm/mount-utils/package.json b/npm/mount-utils/package.json
index 1b85db99c915..3a16a268db5a 100644
--- a/npm/mount-utils/package.json
+++ b/npm/mount-utils/package.json
@@ -7,7 +7,7 @@
     "build": "tsc || echo 'built, with type errors'",
     "postbuild": "node ../../scripts/sync-exported-npm-with-cli.js",
     "check-ts": "tsc --noEmit",
-    "lint": "eslint --ext .js,.ts,.json, .",
+    "lint": "eslint .",
     "watch": "tsc -w"
   },
   "dependencies": {},

From 57a038d83ffc54a98505042ae99d811fbc4768f8 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 14:37:44 -0500
Subject: [PATCH 009/127] npm/puppeteer

---
 npm/puppeteer/.eslintignore    |  4 ----
 npm/puppeteer/eslint.config.ts | 15 +++++++++++++++
 npm/puppeteer/package.json     |  2 +-
 3 files changed, 16 insertions(+), 5 deletions(-)
 delete mode 100644 npm/puppeteer/.eslintignore
 create mode 100644 npm/puppeteer/eslint.config.ts

diff --git a/npm/puppeteer/.eslintignore b/npm/puppeteer/.eslintignore
deleted file mode 100644
index 9bd1cd76241e..000000000000
--- a/npm/puppeteer/.eslintignore
+++ /dev/null
@@ -1,4 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
diff --git a/npm/puppeteer/eslint.config.ts b/npm/puppeteer/eslint.config.ts
new file mode 100644
index 000000000000..be04a32e1628
--- /dev/null
+++ b/npm/puppeteer/eslint.config.ts
@@ -0,0 +1,15 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+export default [
+  ...baseConfig,
+  {
+    ignores: ['**/dist']
+  },
+  {
+    languageOptions: {
+      globals: {
+        require: 'readonly'
+      }
+    }
+  }
+]
\ No newline at end of file
diff --git a/npm/puppeteer/package.json b/npm/puppeteer/package.json
index 2c9816035864..25d45d266f9a 100644
--- a/npm/puppeteer/package.json
+++ b/npm/puppeteer/package.json
@@ -10,7 +10,7 @@
     "check-ts": "tsc --noEmit",
     "cypress:open": "node ../../scripts/cypress.js open",
     "cypress:run": "node ../../scripts/cypress.js run --browser chrome",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "semantic-release": "semantic-release",
     "test": "mocha test/unit/*.spec.ts",
     "test-watch": "yarn test & chokidar '**/*.ts' 'test/unit/*.ts' -c 'yarn test'",

From 32ebb377e862b7bc5e0580346da18400066d7969 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 14:38:06 -0500
Subject: [PATCH 010/127] some global cfg

---
 eslint.config.ts                 | 5 ++++-
 npm/mount-utils/eslint.config.ts | 3 ---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/eslint.config.ts b/eslint.config.ts
index aa6959c16f3f..e956c38a180f 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -36,6 +36,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       '@typescript-eslint/no-this-alias': 'off',
       '@typescript-eslint/triple-slash-reference': 'off',
       'no-global-assign': 'off',
+      'no-unsafe-finally': 'off',
     },
   },
 
@@ -49,6 +50,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       'mocha/no-identical-title': 'off', // warn
       'mocha/consistent-spacing-between-blocks': 'off',
       'mocha/no-global-tests': 'off',
+      'mocha/no-sibling-hooks': 'off',
     }
   },
 
@@ -73,7 +75,8 @@ export default ts.config(
       'cli/**/*',
       '**/__snapshots__/**/*',
       '.nx/**/*',
-      '.releaserc.js'
+      '.releaserc.js',
+      'dist/**'
     ]
   },
   {
diff --git a/npm/mount-utils/eslint.config.ts b/npm/mount-utils/eslint.config.ts
index b8ac3635181b..e98f1e64d9da 100644
--- a/npm/mount-utils/eslint.config.ts
+++ b/npm/mount-utils/eslint.config.ts
@@ -3,7 +3,4 @@ import globals from 'globals'
 
 export default [
   ...baseConfig,
-  {
-    ignores: ['dist/**/*', '**/*.d.ts']
-  }
 ]
\ No newline at end of file

From ed49878581be2e688a3b79016a935ce470199908 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 14:44:09 -0500
Subject: [PATCH 011/127] npm/react

---
 eslint.config.ts             | 13 ++++++++++++-
 npm/react/.eslintrc          | 30 ------------------------------
 npm/react/eslint.config.ts   | 12 ++++++++++++
 npm/react/package.json       |  2 +-
 npm/react/src/createMount.ts |  2 +-
 5 files changed, 26 insertions(+), 33 deletions(-)
 delete mode 100644 npm/react/.eslintrc
 create mode 100644 npm/react/eslint.config.ts

diff --git a/eslint.config.ts b/eslint.config.ts
index e956c38a180f..0bd7c505ccc3 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -37,6 +37,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       '@typescript-eslint/triple-slash-reference': 'off',
       'no-global-assign': 'off',
       'no-unsafe-finally': 'off',
+      '@typescript-eslint/no-empty-object-type': 'off'
     },
   },
 
@@ -60,6 +61,16 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       '.releaserc.js',
       'dist/**/*',
     ]
+  },
+
+  // globals necessary for mixed js/ts 
+  {
+    languageOptions: {
+      globals: {
+        require: 'readonly',
+        module: 'readonly',
+      }
+    }
   }
 ]
 
@@ -87,7 +98,7 @@ export default ts.config(
         tsconfigRootDir: path.join(__dirname, './ts')
       },
       globals: {
-        ...globals.node,
+        ...globals.node,  
       }
     }
   }
diff --git a/npm/react/.eslintrc b/npm/react/.eslintrc
deleted file mode 100644
index ecfd74f652df..000000000000
--- a/npm/react/.eslintrc
+++ /dev/null
@@ -1,30 +0,0 @@
-{
-  "plugins": [
-    "cypress",
-    "@cypress/dev"
-  ],
-  "extends": [
-    "plugin:@cypress/dev/general",
-    "plugin:@cypress/dev/tests",
-    "plugin:@cypress/dev/react"
-  ],
-  "parser": "@typescript-eslint/parser",
-  "env": {
-    "cypress/globals": true
-  },
-  "root": true,
-  "rules": {
-    "no-console": "off",
-    "mocha/no-global-tests": "off",
-    "react/jsx-filename-extension": [
-      "warn",
-      {
-        "extensions": [
-          ".js",
-          ".jsx",
-          ".tsx"
-        ]
-      }
-    ]
-  }
-}
diff --git a/npm/react/eslint.config.ts b/npm/react/eslint.config.ts
new file mode 100644
index 000000000000..4878d4b47675
--- /dev/null
+++ b/npm/react/eslint.config.ts
@@ -0,0 +1,12 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+    files: ['src/createMount.ts'],
+    rules: {
+      'cypress/no-unnecessary-waiting': 'warn',
+    }
+  }
+]
\ No newline at end of file
diff --git a/npm/react/package.json b/npm/react/package.json
index e6542d9ebd25..0be88aa001f4 100644
--- a/npm/react/package.json
+++ b/npm/react/package.json
@@ -11,7 +11,7 @@
     "cy:open:debug": "node --inspect-brk ../../scripts/start.js --component-testing --run-project ${PWD}",
     "cy:run": "node ../../scripts/cypress.js run --component",
     "cy:run:debug": "node --inspect-brk ../../scripts/start.js --component-testing --run-project ${PWD}",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "test": "yarn cy:run",
     "watch": "yarn build --watch --watch.exclude ./dist/**/*"
   },
diff --git a/npm/react/src/createMount.ts b/npm/react/src/createMount.ts
index ca708731a0ae..56cf325ce2bc 100644
--- a/npm/react/src/createMount.ts
+++ b/npm/react/src/createMount.ts
@@ -77,7 +77,7 @@ export const makeMountFn = (
       // by waiting, we delaying test execution for the next tick of event loop
       // and letting hooks and component lifecycle methods to execute mount
       // https://github.com/bahmutov/cypress-react-unit-test/issues/200
-      .wait(0, { log: false })
+      .wait(0, { log: false }) // eslint-disable-line cypress/no-unnecessary-waiting
       .then(() => {
         if (options.log !== false) {
           // Get the display name property via the component constructor

From 0749dbedcb53b8cd5c2bc44a429449231401bfc1 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 14:46:21 -0500
Subject: [PATCH 012/127] npm/svelte

---
 npm/react/.eslintignore     |  5 -----
 npm/svelte/.eslintignore    |  5 -----
 npm/svelte/.eslintrc        | 15 ---------------
 npm/svelte/eslint.config.ts | 12 ++++++++++++
 npm/svelte/package.json     |  2 +-
 5 files changed, 13 insertions(+), 26 deletions(-)
 delete mode 100644 npm/react/.eslintignore
 delete mode 100644 npm/svelte/.eslintignore
 delete mode 100644 npm/svelte/.eslintrc
 create mode 100644 npm/svelte/eslint.config.ts

diff --git a/npm/react/.eslintignore b/npm/react/.eslintignore
deleted file mode 100644
index 79afe972da7d..000000000000
--- a/npm/react/.eslintignore
+++ /dev/null
@@ -1,5 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
\ No newline at end of file
diff --git a/npm/svelte/.eslintignore b/npm/svelte/.eslintignore
deleted file mode 100644
index 79afe972da7d..000000000000
--- a/npm/svelte/.eslintignore
+++ /dev/null
@@ -1,5 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
\ No newline at end of file
diff --git a/npm/svelte/.eslintrc b/npm/svelte/.eslintrc
deleted file mode 100644
index f191aaa0e6d3..000000000000
--- a/npm/svelte/.eslintrc
+++ /dev/null
@@ -1,15 +0,0 @@
-{
-  "plugins": [
-    "cypress"
-  ],
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ],
-  "env": {
-    "cypress/globals": true
-  },
-  "rules": {
-    "mocha/no-global-tests": "off",
-    "no-console": "off"
-  }
-}
diff --git a/npm/svelte/eslint.config.ts b/npm/svelte/eslint.config.ts
new file mode 100644
index 000000000000..a881097d9ffa
--- /dev/null
+++ b/npm/svelte/eslint.config.ts
@@ -0,0 +1,12 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+    files: ['src/mount.ts'],
+    rules: {
+      'cypress/no-unnecessary-waiting': 'warn',
+    }
+  }
+]
\ No newline at end of file
diff --git a/npm/svelte/package.json b/npm/svelte/package.json
index 2d871996fe95..fe01969ab3f8 100644
--- a/npm/svelte/package.json
+++ b/npm/svelte/package.json
@@ -8,7 +8,7 @@
     "build": "rollup -c rollup.config.mjs",
     "postbuild": "node ../../scripts/sync-exported-npm-with-cli.js",
     "check-ts": "tsc --noEmit",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, ."
+    "lint": "eslint ."
   },
   "devDependencies": {
     "@cypress/mount-utils": "0.0.0-development",

From 4c15d08cca5256dbc36440a3a61ddce0d32a9cac Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 14:48:30 -0500
Subject: [PATCH 013/127] npm/vite-dev-server

---
 npm/vite-dev-server/.eslintignore    |  5 -----
 npm/vite-dev-server/.eslintrc        | 32 ----------------------------
 npm/vite-dev-server/eslint.config.ts | 13 +++++++++++
 npm/vite-dev-server/package.json     |  2 +-
 4 files changed, 14 insertions(+), 38 deletions(-)
 delete mode 100644 npm/vite-dev-server/.eslintignore
 delete mode 100644 npm/vite-dev-server/.eslintrc
 create mode 100644 npm/vite-dev-server/eslint.config.ts

diff --git a/npm/vite-dev-server/.eslintignore b/npm/vite-dev-server/.eslintignore
deleted file mode 100644
index 79afe972da7d..000000000000
--- a/npm/vite-dev-server/.eslintignore
+++ /dev/null
@@ -1,5 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
\ No newline at end of file
diff --git a/npm/vite-dev-server/.eslintrc b/npm/vite-dev-server/.eslintrc
deleted file mode 100644
index 7158598773c0..000000000000
--- a/npm/vite-dev-server/.eslintrc
+++ /dev/null
@@ -1,32 +0,0 @@
-{
-  "plugins": [
-    "cypress",
-    "@cypress/dev"
-  ],
-  "extends": [
-    "plugin:@cypress/dev/general",
-    "plugin:@cypress/dev/tests",
-    "plugin:@cypress/dev/react"
-  ],
-  "parser": "vue-eslint-parser",
-  "parserOptions": {
-    "parser": "@typescript-eslint/parser"
-  },
-  "env": {
-    "cypress/globals": true
-  },
-  "rules": {
-    "no-console": "off",
-    "mocha/no-global-tests": "off",
-    "react/jsx-filename-extension": [
-      "warn",
-      {
-        "extensions": [
-          ".js",
-          ".jsx",
-          ".tsx"
-        ]
-      }
-    ]
-  }
-}
diff --git a/npm/vite-dev-server/eslint.config.ts b/npm/vite-dev-server/eslint.config.ts
new file mode 100644
index 000000000000..be2d4c16fd8a
--- /dev/null
+++ b/npm/vite-dev-server/eslint.config.ts
@@ -0,0 +1,13 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+    languageOptions: {
+      globals: {
+        process: 'readonly'
+      }
+    }
+  }
+]
\ No newline at end of file
diff --git a/npm/vite-dev-server/package.json b/npm/vite-dev-server/package.json
index 8bf3fbcd6dff..4fb68e4b0736 100644
--- a/npm/vite-dev-server/package.json
+++ b/npm/vite-dev-server/package.json
@@ -9,7 +9,7 @@
     "cypress:open": "yarn cypress:run-cypress-in-cypress gulp open --project .",
     "cypress:run": "yarn cypress:run-cypress-in-cypress node ../../scripts/cypress run --project . --browser chrome",
     "cypress:run-cypress-in-cypress": "cross-env CYPRESS_INTERNAL_E2E_TESTING_SELF_PARENT_PROJECT=1 HTTP_PROXY_TARGET_FOR_ORIGIN_REQUESTS=http://localhost:4455 CYPRESS_REMOTE_DEBUGGING_PORT=6666 TZ=America/New_York",
-    "lint": "eslint --ext .js,.ts,.json, .",
+    "lint": "eslint .",
     "test": "yarn test-unit",
     "test-unit": "mocha -r ts-node/register/transpile-only --config ./test/.mocharc.js",
     "watch": "tsc -w"

From 9433e5d1525217de366f714018cd7d1d14b133b6 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 14:50:35 -0500
Subject: [PATCH 014/127] npm/vite-plugin-cypress-esm

---
 eslint.config.ts                                             | 1 +
 .../cypress/component/importSyntax.cy.ts                     | 1 -
 npm/vite-plugin-cypress-esm/eslint.config.ts                 | 5 +++++
 npm/vite-plugin-cypress-esm/package.json                     | 2 +-
 4 files changed, 7 insertions(+), 2 deletions(-)
 create mode 100644 npm/vite-plugin-cypress-esm/eslint.config.ts

diff --git a/eslint.config.ts b/eslint.config.ts
index 0bd7c505ccc3..cbe0608c2710 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -52,6 +52,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       'mocha/consistent-spacing-between-blocks': 'off',
       'mocha/no-global-tests': 'off',
       'mocha/no-sibling-hooks': 'off',
+      'mocha/no-skipped-tests': 'off',
     }
   },
 
diff --git a/npm/vite-plugin-cypress-esm/cypress/component/importSyntax.cy.ts b/npm/vite-plugin-cypress-esm/cypress/component/importSyntax.cy.ts
index ee771102568b..1bd8b798ac80 100644
--- a/npm/vite-plugin-cypress-esm/cypress/component/importSyntax.cy.ts
+++ b/npm/vite-plugin-cypress-esm/cypress/component/importSyntax.cy.ts
@@ -1,6 +1,5 @@
 /// <reference types="cypress" />
 
-/* eslint-disable import/no-duplicates */
 import defaultExport1 from './fixtures/kitchenSink'
 import * as name1 from './fixtures/kitchenSink'
 import { export1 } from './fixtures/kitchenSink'
diff --git a/npm/vite-plugin-cypress-esm/eslint.config.ts b/npm/vite-plugin-cypress-esm/eslint.config.ts
new file mode 100644
index 000000000000..088413c81d73
--- /dev/null
+++ b/npm/vite-plugin-cypress-esm/eslint.config.ts
@@ -0,0 +1,5 @@
+import { baseConfig } from '../../eslint.config'
+
+export default [
+  ...baseConfig,
+]
\ No newline at end of file
diff --git a/npm/vite-plugin-cypress-esm/package.json b/npm/vite-plugin-cypress-esm/package.json
index f111d493a2b7..7c5f3d82ec0a 100644
--- a/npm/vite-plugin-cypress-esm/package.json
+++ b/npm/vite-plugin-cypress-esm/package.json
@@ -8,7 +8,7 @@
     "check-ts": "tsc --noEmit",
     "cypress:open": "node ../../scripts/cypress open --project . --component",
     "cypress:run": "node ../../scripts/cypress run --project . --component",
-    "lint": "eslint --ext .js,.ts,.json, .",
+    "lint": "eslint .",
     "test": "npm run cypress:run",
     "watch": "tsc -w"
   },

From fe99b9f793c60b1992defc0a3133ff8af733cad1 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 14:56:22 -0500
Subject: [PATCH 015/127] adds react linting to npm/react

---
 eslint.config.ts           | 1 -
 npm/react/eslint.config.ts | 7 +++++++
 npm/react/package.json     | 3 ++-
 3 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/eslint.config.ts b/eslint.config.ts
index cbe0608c2710..54cb690392af 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -2,7 +2,6 @@ import js from '@eslint/js'
 import ts, { InfiniteDepthConfigWithExtends } from 'typescript-eslint'
 import cy from 'eslint-plugin-cypress/flat'
 import mocha from 'eslint-plugin-mocha'
-import type { Linter } from 'eslint'
 import globals from 'globals'
 import path from 'path'
 
diff --git a/npm/react/eslint.config.ts b/npm/react/eslint.config.ts
index 4878d4b47675..ca09769ad951 100644
--- a/npm/react/eslint.config.ts
+++ b/npm/react/eslint.config.ts
@@ -1,12 +1,19 @@
 import { baseConfig } from '../../eslint.config'
 import globals from 'globals'
+import react from 'eslint-plugin-react'
 
 export default [
   ...baseConfig,
+  react.configs.flat.recommended,
   {
     files: ['src/createMount.ts'],
     rules: {
       'cypress/no-unnecessary-waiting': 'warn',
     }
+  },
+  {
+    rules: {
+      'react/prop-types': 'warn',
+    }
   }
 ]
\ No newline at end of file
diff --git a/npm/react/package.json b/npm/react/package.json
index 0be88aa001f4..d705c78daaab 100644
--- a/npm/react/package.json
+++ b/npm/react/package.json
@@ -29,7 +29,8 @@
     "semver": "^7.5.3",
     "typescript": "~5.4.5",
     "vite": "5.4.10",
-    "vite-plugin-require-transform": "1.0.12"
+    "vite-plugin-require-transform": "1.0.12",
+    "eslint-plugin-react": "^7.37.4"
   },
   "peerDependencies": {
     "@types/react": "^18 || ^19",

From d9c243931d434ccffa97f9cc24f33239953bebed Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 15:14:13 -0500
Subject: [PATCH 016/127] npm/vue

---
 eslint.config.ts                              | 30 ++++++++++++++-----
 npm/vue/.eslintignore                         |  5 ----
 npm/vue/.eslintrc                             | 25 ----------------
 .../cypress/component/setup/HelloWorld.vue    |  2 +-
 npm/vue/eslint.config.ts                      | 15 ++++++++++
 npm/vue/package.json                          |  2 +-
 npm/vue/rollup.config.mjs                     |  1 -
 7 files changed, 40 insertions(+), 40 deletions(-)
 delete mode 100644 npm/vue/.eslintignore
 delete mode 100644 npm/vue/.eslintrc
 create mode 100644 npm/vue/eslint.config.ts

diff --git a/eslint.config.ts b/eslint.config.ts
index 54cb690392af..26f9bd6fafcc 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -4,6 +4,7 @@ import cy from 'eslint-plugin-cypress/flat'
 import mocha from 'eslint-plugin-mocha'
 import globals from 'globals'
 import path from 'path'
+import vue from 'eslint-plugin-vue'
 
 /**
  * baseConfig should be imported by other packages that define their own eslint.config.ts
@@ -17,26 +18,34 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
   ...ts.configs.recommended,
   cy.configs.recommended,
   mocha.configs.flat.recommended,
+  ...vue.configs['flat/recommended'],
   {
     // rules that are gold standard, but have many violations
     // these are off while developing eslint, but will be set to warn
     rules: {
+      'no-useless-escape': 'off',
+      'prefer-const': 'off',
+      'prefer-rest-params': 'off',
+      'no-prototype-builtins': 'off',
+      'no-global-assign': 'off',
+      'no-unsafe-finally': 'off',
+
       '@typescript-eslint/no-unused-expressions': 'off',
       '@typescript-eslint/no-require-imports': 'off',
       '@typescript-eslint/no-unused-vars': 'off',
-      'no-useless-escape': 'off',
       '@typescript-eslint/no-unsafe-function-type': 'off',
-      'prefer-const': 'off',
-      'prefer-rest-params': 'off',
       '@typescript-eslint/ban-ts-comment': 'off',
       '@typescript-eslint/no-namespace': 'off',
       '@typescript-eslint/no-explicit-any': 'off',
-      'no-prototype-builtins': 'off',
       '@typescript-eslint/no-this-alias': 'off',
       '@typescript-eslint/triple-slash-reference': 'off',
-      'no-global-assign': 'off',
-      'no-unsafe-finally': 'off',
-      '@typescript-eslint/no-empty-object-type': 'off'
+      '@typescript-eslint/no-empty-object-type': 'off',
+
+      'vue/multi-word-component-names': 'off',
+      'vue/html-closing-bracket-spacing': 'off',
+
+      'cypress/no-unnecessary-waiting': 'off',
+      'cypress/unsafe-to-chain-command': 'off',
     },
   },
 
@@ -71,6 +80,13 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
         module: 'readonly',
       }
     }
+  },
+
+  {
+    files: ['webpack.config.js'],
+    languageOptions: {
+      globals: globals.node
+    }
   }
 ]
 
diff --git a/npm/vue/.eslintignore b/npm/vue/.eslintignore
deleted file mode 100644
index 79afe972da7d..000000000000
--- a/npm/vue/.eslintignore
+++ /dev/null
@@ -1,5 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
\ No newline at end of file
diff --git a/npm/vue/.eslintrc b/npm/vue/.eslintrc
deleted file mode 100644
index 39a4c517a740..000000000000
--- a/npm/vue/.eslintrc
+++ /dev/null
@@ -1,25 +0,0 @@
-{
-  "plugins": [
-    "cypress"
-  ],
-  "extends": [
-    "plugin:@cypress/dev/tests",
-    "plugin:vue/vue3-recommended"
-  ],
-  "parser": "vue-eslint-parser",
-  "parserOptions": {
-    "parser": "@typescript-eslint/parser"
-  },
-  "globals": {
-    "defineProps": "readonly",
-    "defineEmits": "readonly"
-  },
-  "env": {
-    "cypress/globals": true
-  },
-  "rules": {
-    "mocha/no-global-tests": "off",
-    "no-console": "off",
-    "vue/multi-word-component-names": "off"
-  }
-}
diff --git a/npm/vue/cypress/component/setup/HelloWorld.vue b/npm/vue/cypress/component/setup/HelloWorld.vue
index 6d6f39efeb5a..290601e1fbe6 100644
--- a/npm/vue/cypress/component/setup/HelloWorld.vue
+++ b/npm/vue/cypress/component/setup/HelloWorld.vue
@@ -12,7 +12,7 @@
 import { ref } from 'vue'
 
 defineProps<{
-  msg: String
+  msg: string
 }>()
 
 const count = ref(0)
diff --git a/npm/vue/eslint.config.ts b/npm/vue/eslint.config.ts
new file mode 100644
index 000000000000..3cadca00d647
--- /dev/null
+++ b/npm/vue/eslint.config.ts
@@ -0,0 +1,15 @@
+import { baseConfig } from '../../eslint.config'
+import ts from 'typescript-eslint'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+    files: ['**/*.vue'],
+    languageOptions: {
+      parserOptions: {
+        parser: ts.parser
+      }
+    }
+  }
+]
\ No newline at end of file
diff --git a/npm/vue/package.json b/npm/vue/package.json
index bb4da793467a..97a7be93cfe2 100644
--- a/npm/vue/package.json
+++ b/npm/vue/package.json
@@ -9,7 +9,7 @@
     "check-ts": "yarn tsd && vue-tsc --noEmit",
     "cy:open": "node ../../scripts/cypress.js open --component --project ${PWD}",
     "cy:run": "node ../../scripts/cypress.js run --component --project ${PWD}",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json,.vue .",
+    "lint": "eslint .",
     "test": "yarn cy:run",
     "tsd": "yarn build && yarn tsc -p test-tsd/tsconfig.json",
     "watch": "yarn build --watch --watch.exclude ./dist/**/*"
diff --git a/npm/vue/rollup.config.mjs b/npm/vue/rollup.config.mjs
index 20a827b13cae..58c7fb56eb85 100644
--- a/npm/vue/rollup.config.mjs
+++ b/npm/vue/rollup.config.mjs
@@ -8,7 +8,6 @@ const config = {
   ],
   output: {
     globals: {
-      vue: 'Vue',
       vue: 'Vue',
       '@vue/compiler-dom': 'VueCompilerDOM',
       '@vue/server-renderer': 'VueServerRenderer'

From 520596301ad0dc47b8aa46b6b7b36c23f182273a Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 15:18:08 -0500
Subject: [PATCH 017/127] npm/webpack-batteries-included-preprocessor

---
 .../.eslintignore                                   |  1 -
 .../eslint.config.ts                                | 13 +++++++++++++
 .../package.json                                    |  2 +-
 3 files changed, 14 insertions(+), 2 deletions(-)
 delete mode 100644 npm/webpack-batteries-included-preprocessor/.eslintignore
 create mode 100644 npm/webpack-batteries-included-preprocessor/eslint.config.ts

diff --git a/npm/webpack-batteries-included-preprocessor/.eslintignore b/npm/webpack-batteries-included-preprocessor/.eslintignore
deleted file mode 100644
index d5857ea71fbd..000000000000
--- a/npm/webpack-batteries-included-preprocessor/.eslintignore
+++ /dev/null
@@ -1 +0,0 @@
-**/tsconfig.json
diff --git a/npm/webpack-batteries-included-preprocessor/eslint.config.ts b/npm/webpack-batteries-included-preprocessor/eslint.config.ts
new file mode 100644
index 000000000000..0afa204ee27e
--- /dev/null
+++ b/npm/webpack-batteries-included-preprocessor/eslint.config.ts
@@ -0,0 +1,13 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+  languageOptions: {
+    globals: {
+      ...globals.node
+    }
+  }
+}
+]
\ No newline at end of file
diff --git a/npm/webpack-batteries-included-preprocessor/package.json b/npm/webpack-batteries-included-preprocessor/package.json
index 278b6743726c..dfefa621551b 100644
--- a/npm/webpack-batteries-included-preprocessor/package.json
+++ b/npm/webpack-batteries-included-preprocessor/package.json
@@ -4,7 +4,7 @@
   "description": "Cypress preprocessor for bundling JavaScript via webpack with dependencies included and support for various ES features, TypeScript, and CoffeeScript",
   "private": false,
   "scripts": {
-    "lint": "eslint --ext .js,.json, .",
+    "lint": "eslint .",
     "test": "mocha test/**/*.spec.* --timeout 4000"
   },
   "dependencies": {

From 5be93e7ef673dcad797beef7c19f836b9dc69c17 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 15:22:04 -0500
Subject: [PATCH 018/127] npm/webpack-dev-server

---
 eslint.config.ts                        | 2 ++
 npm/webpack-dev-server/.eslintignore    | 7 -------
 npm/webpack-dev-server/eslint.config.ts | 9 +++++++++
 npm/webpack-dev-server/package.json     | 2 +-
 4 files changed, 12 insertions(+), 8 deletions(-)
 delete mode 100644 npm/webpack-dev-server/.eslintignore
 create mode 100644 npm/webpack-dev-server/eslint.config.ts

diff --git a/eslint.config.ts b/eslint.config.ts
index 26f9bd6fafcc..62505b91f892 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -29,6 +29,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       'no-prototype-builtins': 'off',
       'no-global-assign': 'off',
       'no-unsafe-finally': 'off',
+      'no-async-promise-executor': 'off',
 
       '@typescript-eslint/no-unused-expressions': 'off',
       '@typescript-eslint/no-require-imports': 'off',
@@ -46,6 +47,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
 
       'cypress/no-unnecessary-waiting': 'off',
       'cypress/unsafe-to-chain-command': 'off',
+      'cypress/no-async-tests': 'off',
     },
   },
 
diff --git a/npm/webpack-dev-server/.eslintignore b/npm/webpack-dev-server/.eslintignore
deleted file mode 100644
index 8d2416a026fd..000000000000
--- a/npm/webpack-dev-server/.eslintignore
+++ /dev/null
@@ -1,7 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
-**/test/fixtures
-**/__snapshots__
\ No newline at end of file
diff --git a/npm/webpack-dev-server/eslint.config.ts b/npm/webpack-dev-server/eslint.config.ts
new file mode 100644
index 000000000000..c61f466716ee
--- /dev/null
+++ b/npm/webpack-dev-server/eslint.config.ts
@@ -0,0 +1,9 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['__snapshots__/**/*', 'test/fixtures/compilation-fails.spec.js']
+  }
+]
\ No newline at end of file
diff --git a/npm/webpack-dev-server/package.json b/npm/webpack-dev-server/package.json
index e5863b5aa6ee..8c734c722721 100644
--- a/npm/webpack-dev-server/package.json
+++ b/npm/webpack-dev-server/package.json
@@ -12,7 +12,7 @@
     "cypress:run": "yarn cypress:run-cypress-in-cypress node ../../scripts/cypress run --project . --browser chrome",
     "cypress:run-cypress-in-cypress": "cross-env CYPRESS_INTERNAL_E2E_TESTING_SELF_PARENT_PROJECT=1 HTTP_PROXY_TARGET_FOR_ORIGIN_REQUESTS=http://localhost:4455 CYPRESS_REMOTE_DEBUGGING_PORT=6666 TZ=America/New_York",
     "dev": "tsc --watch",
-    "lint": "eslint --ext .js,.ts,.json, .",
+    "lint": "eslint .",
     "test": "yarn test-unit",
     "test-unit": "mocha -r ts-node/register/transpile-only --config ./test/.mocharc.js"
   },

From 1b1862ae7dec9c5e798553a9a6373b4ad9cb21b8 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 15:25:36 -0500
Subject: [PATCH 019/127] npm/webpack-preprocessor

---
 eslint.config.ts                          |  3 +++
 npm/webpack-preprocessor/.eslintignore    |  8 --------
 npm/webpack-preprocessor/eslint.config.ts | 16 ++++++++++++++++
 npm/webpack-preprocessor/package.json     |  2 +-
 4 files changed, 20 insertions(+), 9 deletions(-)
 delete mode 100644 npm/webpack-preprocessor/.eslintignore
 create mode 100644 npm/webpack-preprocessor/eslint.config.ts

diff --git a/eslint.config.ts b/eslint.config.ts
index 62505b91f892..f9583d0c09f7 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -41,6 +41,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       '@typescript-eslint/no-this-alias': 'off',
       '@typescript-eslint/triple-slash-reference': 'off',
       '@typescript-eslint/no-empty-object-type': 'off',
+      '@typescript-eslint/no-wrapper-object-types': 'off',
 
       'vue/multi-word-component-names': 'off',
       'vue/html-closing-bracket-spacing': 'off',
@@ -63,6 +64,8 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       'mocha/no-global-tests': 'off',
       'mocha/no-sibling-hooks': 'off',
       'mocha/no-skipped-tests': 'off',
+      'mocha/no-exports': 'off',
+      'mocha/no-async-describe': 'off',
     }
   },
 
diff --git a/npm/webpack-preprocessor/.eslintignore b/npm/webpack-preprocessor/.eslintignore
deleted file mode 100644
index 465e063be1c1..000000000000
--- a/npm/webpack-preprocessor/.eslintignore
+++ /dev/null
@@ -1,8 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
-**/test/fixtures
-**/_test-output
-/cypress/tests/e2e/compile-error.js
\ No newline at end of file
diff --git a/npm/webpack-preprocessor/eslint.config.ts b/npm/webpack-preprocessor/eslint.config.ts
new file mode 100644
index 000000000000..3f74a8464348
--- /dev/null
+++ b/npm/webpack-preprocessor/eslint.config.ts
@@ -0,0 +1,16 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['__snapshots__/**/*', 'cypress/tests/e2e/compile-error.js', 'test/fixtures/syntax_error_spec.js']
+  },
+  {
+    languageOptions: {
+      globals: {
+        ...globals.node,
+      }
+    }
+  }
+]
\ No newline at end of file
diff --git a/npm/webpack-preprocessor/package.json b/npm/webpack-preprocessor/package.json
index 0a614f0051c1..719378691e6a 100644
--- a/npm/webpack-preprocessor/package.json
+++ b/npm/webpack-preprocessor/package.json
@@ -7,7 +7,7 @@
   "scripts": {
     "build": "rimraf dist && tsc || echo 'built, with errors'",
     "check-ts": "tsc --noEmit",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "secure": "nsp check",
     "semantic-release": "semantic-release",
     "size": "npm pack --dry",

From 7ce76dba63c99059fdae5c899fab885329b96ed1 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 16:02:57 -0500
Subject: [PATCH 020/127] use stylistic for ./scripts

---
 eslint.config.ts                    | 61 ++++++++++++++++++++---------
 npm/cypress-schematic/tsconfig.json |  1 +
 package.json                        |  4 +-
 scripts/binary/meta.ts              |  4 +-
 yarn.lock                           | 18 ++++++---
 5 files changed, 62 insertions(+), 26 deletions(-)

diff --git a/eslint.config.ts b/eslint.config.ts
index f9583d0c09f7..d8a389f910c4 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -5,6 +5,7 @@ import mocha from 'eslint-plugin-mocha'
 import globals from 'globals'
 import path from 'path'
 import vue from 'eslint-plugin-vue'
+import stylistic from '@stylistic/eslint-plugin'
 
 /**
  * baseConfig should be imported by other packages that define their own eslint.config.ts
@@ -14,11 +15,36 @@ import vue from 'eslint-plugin-vue'
  */
 
 export const baseConfig: InfiniteDepthConfigWithExtends[] = [
-  js.configs.recommended, 
+  js.configs.recommended,
   ...ts.configs.recommended,
   cy.configs.recommended,
   mocha.configs.flat.recommended,
   ...vue.configs['flat/recommended'],
+  stylistic.configs.customize({
+    'braceStyle': '1tbs',
+    'arrowParens': true,
+  }),
+
+  // overrides for stylistic rules
+  {
+    rules: {
+      '@stylistic/space-before-function-paren': ['error', 'always'],
+      '@stylistic/comma-dangle': ['error', 'always-multiline'],
+      '@stylistic/multiline-ternary': 'off',
+      // the following rules are very inconsistent across the codebase.
+      // enabling them, even with customized options, may result in large diffs.
+      '@stylistic/indent': 'off', // ['warn', 2, { MemberExpression: 0 }],
+      '@stylistic/operator-linebreak': 'off',
+      '@stylistic/max-statements-per-line': 'off',
+      '@stylistic/quote-props': 'off',
+      '@stylistic/spaced-comment': 'off',
+      '@stylistic/no-extra-parens': 'off',
+      '@stylistic/new-parens': 'off',
+      '@stylistic/indent-binary-ops': 'off',
+      '@stylistic/template-curly-spacing': 'off',
+    },
+  },
+
   {
     // rules that are gold standard, but have many violations
     // these are off while developing eslint, but will be set to warn
@@ -66,7 +92,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       'mocha/no-skipped-tests': 'off',
       'mocha/no-exports': 'off',
       'mocha/no-async-describe': 'off',
-    }
+    },
   },
 
   // common file patterns to ignore
@@ -74,28 +100,27 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
     ignores: [
       '.releaserc.js',
       'dist/**/*',
-    ]
+    ],
   },
 
-  // globals necessary for mixed js/ts 
+  // globals necessary for mixed js/ts
   {
     languageOptions: {
       globals: {
         require: 'readonly',
         module: 'readonly',
-      }
-    }
+      },
+    },
   },
 
   {
     files: ['webpack.config.js'],
     languageOptions: {
-      globals: globals.node
-    }
-  }
+      globals: globals.node,
+    },
+  },
 ]
 
-
 export default ts.config(
   ...baseConfig,
   {
@@ -108,19 +133,19 @@ export default ts.config(
       '**/__snapshots__/**/*',
       '.nx/**/*',
       '.releaserc.js',
-      'dist/**'
-    ]
+      'dist/**',
+    ],
   },
   {
     files: ['**/*.{ts,js}'],
     languageOptions: {
       parserOptions: {
         projectService: true,
-        tsconfigRootDir: path.join(__dirname, './ts')
+        tsconfigRootDir: path.join(__dirname, './ts'),
       },
       globals: {
-        ...globals.node,  
-      }
-    }
-  }
-)
\ No newline at end of file
+        ...globals.node,
+      },
+    },
+  },
+)
diff --git a/npm/cypress-schematic/tsconfig.json b/npm/cypress-schematic/tsconfig.json
index f5ba49335784..23e4f1d70211 100644
--- a/npm/cypress-schematic/tsconfig.json
+++ b/npm/cypress-schematic/tsconfig.json
@@ -27,4 +27,5 @@
   "include": [
     "src/**/*"
   ],
+  "exclude": ["src/**/*.spec.ts"]
 }
diff --git a/package.json b/package.json
index 76d014d92839..288da162e370 100644
--- a/package.json
+++ b/package.json
@@ -270,7 +270,9 @@
     "ts-node": "^10.9.2",
     "typescript": "5.3.3",
     "typescript-eslint": "^8.20.0",
-    "yarn-deduplicate": "3.1.0"
+    "yarn-deduplicate": "3.1.0",
+    "@stylistic/eslint-plugin": "^2.13.0",
+    "eslint-plugin-vue": "^9.32.0"
   },
   "engines": {
     "node": ">=20.18.1",
diff --git a/scripts/binary/meta.ts b/scripts/binary/meta.ts
index 2fc9c912494f..ba72f136aa99 100644
--- a/scripts/binary/meta.ts
+++ b/scripts/binary/meta.ts
@@ -14,7 +14,9 @@ if (!Object.values(platforms).includes(PLATFORM)) {
   throw new Error(`Invalid build platform  ${PLATFORM}`)
 }
 
-export type PlatformName = {[K in keyof typeof platforms]: typeof platforms[K]}[keyof typeof platforms]
+export type PlatformName = {
+  [K in keyof typeof platforms]: typeof platforms[K]
+}[keyof typeof platforms]
 
 export const buildRootDir = () => {
   return path.join(TMP_BUILD_DIR, 'build')
diff --git a/yarn.lock b/yarn.lock
index 9b7e26bb94f3..c0cd1708d9af 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -7230,6 +7230,17 @@
     "@smithy/types" "^2.8.0"
     tslib "^2.5.0"
 
+"@stylistic/eslint-plugin@^2.13.0":
+  version "2.13.0"
+  resolved "https://registry.yarnpkg.com/@stylistic/eslint-plugin/-/eslint-plugin-2.13.0.tgz#53bf175dac8c1ec055b370a6ff77d491cae9a70d"
+  integrity sha512-RnO1SaiCFHn666wNz2QfZEFxvmiNRqhzaMXHXxXXKt+MEP7aajlPxUSMIQpKAaJfverpovEYqjBOXDq6dDcaOQ==
+  dependencies:
+    "@typescript-eslint/utils" "^8.13.0"
+    eslint-visitor-keys "^4.2.0"
+    espree "^10.3.0"
+    estraverse "^5.3.0"
+    picomatch "^4.0.2"
+
 "@svgr/babel-plugin-add-jsx-attribute@8.0.0":
   version "8.0.0"
   resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz#4001f5d5dd87fa13303e36ee106e3ff3a7eb8b22"
@@ -8741,7 +8752,7 @@
     "@typescript-eslint/typescript-estree" "7.2.0"
     semver "^7.5.4"
 
-"@typescript-eslint/utils@8.20.0":
+"@typescript-eslint/utils@8.20.0", "@typescript-eslint/utils@^8.13.0":
   version "8.20.0"
   resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.20.0.tgz#53127ecd314b3b08836b4498b71cdb86f4ef3aa2"
   integrity sha512-dq70RUw6UK9ei7vxc4KQtBRk7qkHZv447OUZ6RPQMQl71I3NZxQJX/f32Smr+iqWrB02pHKn2yAdHBb0KNrRMA==
@@ -15682,11 +15693,6 @@ eslint-plugin-mocha@^10.5.0:
     globals "^13.24.0"
     rambda "^7.4.0"
 
-eslint-plugin-react-hooks@^5.1.0:
-  version "5.1.0"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.1.0.tgz#3d34e37d5770866c34b87d5b499f5f0b53bf0854"
-  integrity sha512-mpJRtPgHN2tNAvZ35AMfqeB3Xqeo273QxrHJsbBEPWODRM4r0yB6jfoROqKEYrOn27UtRPpcpHc2UqyBSuUNTw==
-
 eslint-plugin-react@^7.37.4:
   version "7.37.4"
   resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.37.4.tgz#1b6c80b6175b6ae4b26055ae4d55d04c414c7181"

From 2ac9889deedd16efe1e2bd5afd5078f1c8fdf42c Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 16:10:11 -0500
Subject: [PATCH 021/127] npm/angular with styles

---
 eslint.config.ts             |  1 +
 npm/angular/eslint.config.ts | 10 +++++-----
 npm/angular/src/mount.ts     |  6 +++---
 3 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/eslint.config.ts b/eslint.config.ts
index d8a389f910c4..6857782c56b3 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -49,6 +49,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
     // rules that are gold standard, but have many violations
     // these are off while developing eslint, but will be set to warn
     rules: {
+      'no-console': 'error',
       'no-useless-escape': 'off',
       'prefer-const': 'off',
       'prefer-rest-params': 'off',
diff --git a/npm/angular/eslint.config.ts b/npm/angular/eslint.config.ts
index 339d3f6c8bd9..6dfcd19dce95 100644
--- a/npm/angular/eslint.config.ts
+++ b/npm/angular/eslint.config.ts
@@ -5,7 +5,7 @@ import globals from 'globals'
 export default [
   ...baseConfig,
   {
-    ignores: ['dist/**']
+    ignores: ['dist/**'],
   },
   {
     languageOptions: {
@@ -18,7 +18,7 @@ export default [
       },
       globals: {
         ...globals.browser,
-      }
-    }
-  }
-]
\ No newline at end of file
+      },
+    },
+  },
+]
diff --git a/npm/angular/src/mount.ts b/npm/angular/src/mount.ts
index 982c3200adee..b84b33a2706c 100644
--- a/npm/angular/src/mount.ts
+++ b/npm/angular/src/mount.ts
@@ -73,7 +73,7 @@ export interface MountConfig<T> extends TestModuleMetadata {
    * })
    */
   // allow InputSignals to be type primitive and WritableSignal for type compliance
-  componentProperties?: Partial<{ [P in keyof T]: T[P] extends InputSignal<infer V> ? InputSignal<V> | WritableSignal<V> | V : T[P]}>
+  componentProperties?: Partial<{ [P in keyof T]: T[P] extends InputSignal<infer V> ? InputSignal<V> | WritableSignal<V> | V : T[P] }>
 }
 
 let activeFixture: ComponentFixture<any> | null = null
@@ -121,7 +121,7 @@ export type MountResponse<T> = {
    * @see https://angular.io/api/core/testing/ComponentFixture#componentInstance
    */
   component: T
-};
+}
 
 // 'zone.js/testing' is not properly aliasing `it.skip` but it does provide `xit`/`xspecify`
 // Written up under https://github.com/angular/angular/issues/46297 but is not seeing movement
@@ -449,7 +449,7 @@ function setupComponent<T> (
       acc[key] = new SimpleChange(null, value, true)
 
       return acc
-    }, {} as {[key: string]: SimpleChange})
+    }, {} as { [key: string]: SimpleChange })
 
     if (Object.keys(componentProperties).length > 0) {
       component.ngOnChanges(simpleChanges)

From 53d7cab7dd934e8f209859014d02a915102ecd77 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 16:14:00 -0500
Subject: [PATCH 022/127] npm/cypress-schematic stylistic

---
 eslint.config.ts                                     |  9 ++++++++-
 npm/cypress-schematic/eslint.config.ts               | 12 ++++++------
 npm/cypress-schematic/src/builders/cypress/index.ts  |  3 ++-
 .../src/schematics/ng-generate/component/index.ts    |  2 +-
 .../src/schematics/ng-generate/cypress-test/index.ts |  2 +-
 npm/cypress-schematic/src/schematics/utils/index.ts  | 10 +++++-----
 .../src/schematics/utils/jsonFile.ts                 |  4 ++--
 7 files changed, 25 insertions(+), 17 deletions(-)

diff --git a/eslint.config.ts b/eslint.config.ts
index 6857782c56b3..5b6802c009b4 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -42,6 +42,14 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       '@stylistic/new-parens': 'off',
       '@stylistic/indent-binary-ops': 'off',
       '@stylistic/template-curly-spacing': 'off',
+      '@stylistic/no-mixed-operators': 'off',
+    },
+  },
+
+  // overrides for basic recommended rules
+  {
+    rules: {
+      'no-console': 'error',
     },
   },
 
@@ -49,7 +57,6 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
     // rules that are gold standard, but have many violations
     // these are off while developing eslint, but will be set to warn
     rules: {
-      'no-console': 'error',
       'no-useless-escape': 'off',
       'prefer-const': 'off',
       'prefer-rest-params': 'off',
diff --git a/npm/cypress-schematic/eslint.config.ts b/npm/cypress-schematic/eslint.config.ts
index 5822704c0bd2..51b98287594e 100644
--- a/npm/cypress-schematic/eslint.config.ts
+++ b/npm/cypress-schematic/eslint.config.ts
@@ -5,19 +5,19 @@ import path from 'path'
 export default [
   ...baseConfig,
   {
-    ignores: ['src/**/*.{js,js.map,d.ts}', 'src/schematics/cypress/files/cypress/plugins/*.js']
+    ignores: ['src/**/*.{js,js.map,d.ts}', 'src/schematics/cypress/files/cypress/plugins/*.js', '**/*.spec.ts'],
   },
   {
     languageOptions: {
       parserOptions: {
         projectService: {
-          allowDefaultProject: ['eslint.config.ts', 'projects/sandbox/src/fake-component.component.ts']
+          allowDefaultProject: ['eslint.config.ts', 'projects/sandbox/src/fake-component.component.ts'],
         },
         project: './tsconfig.json',
       },
       globals: {
         ...globals.node,
-      }
-    }
-  }
-]
\ No newline at end of file
+      },
+    },
+  },
+]
diff --git a/npm/cypress-schematic/src/builders/cypress/index.ts b/npm/cypress-schematic/src/builders/cypress/index.ts
index c3283d200d0d..61ad88246ab4 100644
--- a/npm/cypress-schematic/src/builders/cypress/index.ts
+++ b/npm/cypress-schematic/src/builders/cypress/index.ts
@@ -14,7 +14,7 @@ import { catchError, concatMap, first, map, switchMap, tap } from 'rxjs/operator
 import { CypressBuilderOptions } from './cypressBuilderOptions'
 
 type CypressOptions = Partial<CypressCommandLine.CypressRunOptions> &
-Partial<CypressCommandLine.CypressOpenOptions>;
+Partial<CypressCommandLine.CypressOpenOptions>
 
 type CypressStartDevServerProps = {
   devServerTarget: string
@@ -114,6 +114,7 @@ export function startDevServer ({
       // for instance @nguniversal/builders:ssr-dev-server.
       // see https://github.com/nrwl/nx/blob/f930117ed6ab13dccc40725c7e9551be081cc83d/packages/cypress/src/executors/cypress/cypress.impl.ts
       if (builderName !== '@nguniversal/builders:ssr-dev-server') {
+        // eslint-disable-next-line no-console
         console.info(`Passing watch mode to DevServer - watch mode is ${watch}`)
         overrides = {
           watch,
diff --git a/npm/cypress-schematic/src/schematics/ng-generate/component/index.ts b/npm/cypress-schematic/src/schematics/ng-generate/component/index.ts
index 5f926c54a65e..9829931c2455 100644
--- a/npm/cypress-schematic/src/schematics/ng-generate/component/index.ts
+++ b/npm/cypress-schematic/src/schematics/ng-generate/component/index.ts
@@ -1,6 +1,6 @@
 import { chain, externalSchematic, noop, Rule, SchematicContext, Tree } from '@angular-devkit/schematics'
 import cypressTest from '../cypress-test'
-import path = require('path');
+import path = require('path')
 
 export default function (options: any): Rule {
   return (_: Tree, _context: SchematicContext) => {
diff --git a/npm/cypress-schematic/src/schematics/ng-generate/cypress-test/index.ts b/npm/cypress-schematic/src/schematics/ng-generate/cypress-test/index.ts
index 9a1b22617553..10a8ac2895d6 100644
--- a/npm/cypress-schematic/src/schematics/ng-generate/cypress-test/index.ts
+++ b/npm/cypress-schematic/src/schematics/ng-generate/cypress-test/index.ts
@@ -56,7 +56,7 @@ export default function (options: Schema): Rule {
     if (options.path === undefined) {
       options.path = testType === 'component' ? `${project.sourceRoot}/${project.prefix}` : `${project.root}/cypress/e2e`
     }
-
+    // eslint-disable-next-line no-console
     console.log(`Creating new ${testType} spec named: ${options.name}`)
 
     const templatePath = testType === 'component' ? '../files/ct/__path__' : '../files/e2e/__path__'
diff --git a/npm/cypress-schematic/src/schematics/utils/index.ts b/npm/cypress-schematic/src/schematics/utils/index.ts
index ef78888d6e33..c6b5496434c8 100644
--- a/npm/cypress-schematic/src/schematics/utils/index.ts
+++ b/npm/cypress-schematic/src/schematics/utils/index.ts
@@ -52,7 +52,7 @@ export function getLatestNodeVersion (packageName: string): Promise<NodePackage>
   }
 }
 
-const ctSpecContent = ({ componentName, componentFilename }: {componentName: string, componentFilename: string}): string => {
+const ctSpecContent = ({ componentName, componentFilename }: { componentName: string, componentFilename: string }): string => {
   return `import { ${componentName} } from './${componentFilename}.component'\n
   describe('${componentName}', () => {
     it('should mount', () => {
@@ -62,19 +62,19 @@ const ctSpecContent = ({ componentName, componentFilename }: {componentName: str
   `
 }
 
-function generateCTSpec ({ tree, appPath, component }: { tree: Tree, appPath: string, component: any}): Rule | void {
+function generateCTSpec ({ tree, appPath, component }: { tree: Tree, appPath: string, component: any }): Rule | void {
   const buffer = tree.read(`${appPath}/${component['name']}`)
   const componentString = buffer?.toString()
   const componentMatch = componentString?.match(/(?<=class )\S+/g)
   const componentFilename = component['name'].split('.')[0]
   const componentName = componentMatch ? componentMatch[0] : componentFilename
-
+ // eslint-disable-next-line no-console
   console.log(`Creating new component spec for: ${componentName}\n`)
 
   return tree.create(`${appPath}/${componentFilename}.component.cy.ts`, ctSpecContent({ componentName, componentFilename }))
 }
 
-export function getDirectoriesAndCreateSpecs ({ appPath, tree }: { appPath: string, tree: Tree}) {
+export function getDirectoriesAndCreateSpecs ({ appPath, tree }: { appPath: string, tree: Tree }) {
   let components = []
   let directories = []
 
@@ -99,7 +99,7 @@ export function getDirectoriesAndCreateSpecs ({ appPath, tree }: { appPath: stri
   }
 }
 
-export function createTemplate ({ templatePath, options }: {templatePath: string, options: Schema}): any {
+export function createTemplate ({ templatePath, options }: { templatePath: string, options: Schema }): any {
   return apply(url(templatePath), [
     applyTemplates({
       classify: strings.classify,
diff --git a/npm/cypress-schematic/src/schematics/utils/jsonFile.ts b/npm/cypress-schematic/src/schematics/utils/jsonFile.ts
index 3e0f812b20a3..9ea0145606e0 100644
--- a/npm/cypress-schematic/src/schematics/utils/jsonFile.ts
+++ b/npm/cypress-schematic/src/schematics/utils/jsonFile.ts
@@ -19,9 +19,9 @@ import {
   printParseErrorCode,
 } from 'jsonc-parser'
 
-export type InsertionIndex = (properties: string[]) => number;
+export type InsertionIndex = (properties: string[]) => number
 
-export type JSONPath = (string | number)[];
+export type JSONPath = (string | number)[]
 
 /** @internal */
 export class JSONFile {

From 8c866c1549ce51b608483e3987c1027c1abdf307 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 16:17:40 -0500
Subject: [PATCH 023/127] npm/grep stylistic

---
 npm/grep/eslint.config.ts           | 8 ++++----
 npm/grep/expects/test-npm-module.js | 1 +
 npm/grep/src/plugin.js              | 1 +
 npm/grep/src/support.js             | 1 +
 npm/grep/src/utils.js               | 4 +++-
 5 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/npm/grep/eslint.config.ts b/npm/grep/eslint.config.ts
index 2063e1ce99ac..0d0482492336 100644
--- a/npm/grep/eslint.config.ts
+++ b/npm/grep/eslint.config.ts
@@ -16,7 +16,7 @@ export default [
     languageOptions: {
       globals: {
         process: 'readonly',
-      }
-    }
-  }
-]
\ No newline at end of file
+      },
+    },
+  },
+]
diff --git a/npm/grep/expects/test-npm-module.js b/npm/grep/expects/test-npm-module.js
index 0abade82e82f..b101871a26ed 100644
--- a/npm/grep/expects/test-npm-module.js
+++ b/npm/grep/expects/test-npm-module.js
@@ -1,6 +1,7 @@
 // https://github.com/cypress-io/cypress-grep/issues/41
 // shows how to pass grep parameters using Cypress NPM Module API
 // https://on.cypress.io/module-api
+/* eslint no-console: 0 */
 const cypress = require('cypress')
 
 cypress
diff --git a/npm/grep/src/plugin.js b/npm/grep/src/plugin.js
index 483b3aa85f18..852d89ffb170 100644
--- a/npm/grep/src/plugin.js
+++ b/npm/grep/src/plugin.js
@@ -1,3 +1,4 @@
+/* eslint no-console: 0 */
 const debug = require('debug')('@cypress/grep')
 const globby = require('globby')
 const { getTestNames } = require('find-test-names')
diff --git a/npm/grep/src/support.js b/npm/grep/src/support.js
index 8797d6786990..fd577e93b28c 100644
--- a/npm/grep/src/support.js
+++ b/npm/grep/src/support.js
@@ -6,6 +6,7 @@ const { parseGrep, shouldTestRun } = require('./utils')
 const { version } = require('../package.json')
 const debug = require('debug')('@cypress/grep')
 
+// eslint-disable-next-line no-console
 debug.log = console.info.bind(console)
 
 // preserve the real "it" function
diff --git a/npm/grep/src/utils.js b/npm/grep/src/utils.js
index 9ba2dc544cc3..bc8d325b8cd3 100644
--- a/npm/grep/src/utils.js
+++ b/npm/grep/src/utils.js
@@ -88,7 +88,7 @@ function parseTagsGrep (s) {
     })
 
     if (ORS_filtered.length === 0) {
-      ORS_filtered[ 0 ] = explicitNotTags
+      ORS_filtered[0] = explicitNotTags
     }
   }
 
@@ -132,7 +132,9 @@ function shouldTestRunTitle (parsedGrep, testName) {
   }
 
   if (!Array.isArray(parsedGrep)) {
+    // eslint-disable-next-line no-console
     console.error('Invalid parsed title grep')
+    // eslint-disable-next-line no-console
     console.error(parsedGrep)
     throw new Error('Expected title grep to be an array')
   }

From d4d06376d28af0dd34dad2c9092b3025677dc996 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 16:18:17 -0500
Subject: [PATCH 024/127] npm/mount-utils stylistic

---
 npm/mount-utils/eslint.config.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/npm/mount-utils/eslint.config.ts b/npm/mount-utils/eslint.config.ts
index e98f1e64d9da..e8a3f34babbb 100644
--- a/npm/mount-utils/eslint.config.ts
+++ b/npm/mount-utils/eslint.config.ts
@@ -3,4 +3,4 @@ import globals from 'globals'
 
 export default [
   ...baseConfig,
-]
\ No newline at end of file
+]

From 77f38fcc78f9e90592639786e4f5a1f2ba90b00f Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 16:18:43 -0500
Subject: [PATCH 025/127] npm/puppeteer stylistic

---
 npm/puppeteer/eslint.config.ts | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/npm/puppeteer/eslint.config.ts b/npm/puppeteer/eslint.config.ts
index be04a32e1628..be64517873b9 100644
--- a/npm/puppeteer/eslint.config.ts
+++ b/npm/puppeteer/eslint.config.ts
@@ -3,13 +3,13 @@ import globals from 'globals'
 export default [
   ...baseConfig,
   {
-    ignores: ['**/dist']
+    ignores: ['**/dist'],
   },
   {
     languageOptions: {
       globals: {
-        require: 'readonly'
-      }
-    }
-  }
-]
\ No newline at end of file
+        require: 'readonly',
+      },
+    },
+  },
+]

From c62768e9c8113ffac38efc1b692187be74f54d76 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 16:20:01 -0500
Subject: [PATCH 026/127] npm/react stylistic

---
 .../advanced/lazy-loaded-suspense/LazyComponent.tsx       | 2 +-
 npm/react/eslint.config.ts                                | 8 ++++----
 npm/react/src/createMount.ts                              | 2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/npm/react/cypress/component/advanced/lazy-loaded-suspense/LazyComponent.tsx b/npm/react/cypress/component/advanced/lazy-loaded-suspense/LazyComponent.tsx
index 05410fe8182c..62a1d18bb565 100644
--- a/npm/react/cypress/component/advanced/lazy-loaded-suspense/LazyComponent.tsx
+++ b/npm/react/cypress/component/advanced/lazy-loaded-suspense/LazyComponent.tsx
@@ -11,7 +11,7 @@ export const LazyComponent: React.FC<LazyComponentProps> = () => {
   return (
     <div>
       Loading a dog:
-      <React.Suspense fallback={'loading...'}>
+      <React.Suspense fallback="loading...">
         <LazyDog />
       </React.Suspense>
     </div>
diff --git a/npm/react/eslint.config.ts b/npm/react/eslint.config.ts
index ca09769ad951..65ba4ca3b18c 100644
--- a/npm/react/eslint.config.ts
+++ b/npm/react/eslint.config.ts
@@ -9,11 +9,11 @@ export default [
     files: ['src/createMount.ts'],
     rules: {
       'cypress/no-unnecessary-waiting': 'warn',
-    }
+    },
   },
   {
     rules: {
       'react/prop-types': 'warn',
-    }
-  }
-]
\ No newline at end of file
+    },
+  },
+]
diff --git a/npm/react/src/createMount.ts b/npm/react/src/createMount.ts
index 56cf325ce2bc..ca708731a0ae 100644
--- a/npm/react/src/createMount.ts
+++ b/npm/react/src/createMount.ts
@@ -77,7 +77,7 @@ export const makeMountFn = (
       // by waiting, we delaying test execution for the next tick of event loop
       // and letting hooks and component lifecycle methods to execute mount
       // https://github.com/bahmutov/cypress-react-unit-test/issues/200
-      .wait(0, { log: false }) // eslint-disable-line cypress/no-unnecessary-waiting
+      .wait(0, { log: false })
       .then(() => {
         if (options.log !== false) {
           // Get the display name property via the component constructor

From fb74c9389c57c8247eee696454fb5edbbc1a651a Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 16:20:30 -0500
Subject: [PATCH 027/127] npm/svelte stylistic

---
 npm/svelte/eslint.config.ts | 6 +++---
 npm/svelte/src/mount.ts     | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/npm/svelte/eslint.config.ts b/npm/svelte/eslint.config.ts
index a881097d9ffa..740023207080 100644
--- a/npm/svelte/eslint.config.ts
+++ b/npm/svelte/eslint.config.ts
@@ -7,6 +7,6 @@ export default [
     files: ['src/mount.ts'],
     rules: {
       'cypress/no-unnecessary-waiting': 'warn',
-    }
-  }
-]
\ No newline at end of file
+    },
+  },
+]
diff --git a/npm/svelte/src/mount.ts b/npm/svelte/src/mount.ts
index 1e651a25026c..c1f76eef6db1 100644
--- a/npm/svelte/src/mount.ts
+++ b/npm/svelte/src/mount.ts
@@ -7,7 +7,7 @@ import type { MountOptions, Component } from 'svelte'
 
 const DEFAULT_COMP_NAME = 'unknown'
 
-export interface MountReturn{
+export interface MountReturn {
   component: Record<string, any>
 }
 
@@ -50,7 +50,7 @@ const getComponentDisplayName = (Component: Component<Record<string, any>, Recor
  */
 export function mount (
   Component: Component<Record<string, any>, Record<string, any>, any>,
-  options: Omit<MountOptions, 'target'> & {log?: boolean} = {},
+  options: Omit<MountOptions, 'target'> & { log?: boolean } = {},
 ): Cypress.Chainable<MountReturn> {
   // In Svelte 5, the component name is no longer easily discoverable and logs as "wrapper"
   // so we default the logging of it to false as it doesn't provide a lot of value

From a0ea82b8274c90450e02d68a7f3d8d8c072ce9fc Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 16:22:30 -0500
Subject: [PATCH 028/127] adds back some restricted properties and syntax

---
 eslint.config.ts | 25 ++++++++++++++++++++++++-
 1 file changed, 24 insertions(+), 1 deletion(-)

diff --git a/eslint.config.ts b/eslint.config.ts
index 5b6802c009b4..2b706840245e 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -46,10 +46,33 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
     },
   },
 
-  // overrides for basic recommended rules
+  // overrides for basic recommended rules, and custom rules
   {
     rules: {
       'no-console': 'error',
+      'no-restricted-properties': [
+        'error',
+        {
+          object: 'process',
+          property: 'geteuid',
+          message: 'process.geteuid() will throw on Windows. Do not use it unless you catch any potential errors.',
+        },
+        {
+          object: 'os',
+          property: 'userInfo',
+          message: 'os.userInfo() will throw when there is not an `/etc/passwd` entry for the current user (like when running with --user 12345 in Docker). Do not use it unless you catch any potential errors.',
+        },
+      ],
+      'no-restricted-syntax': [
+        // esquery tool: https://estools.github.io/esquery/
+        'error',
+        {
+          // match sync FS methods except for `existsSync`
+          // examples: fse.readFileSync, fs.readFileSync, this.ctx.fs.readFileSync...
+          selector: `MemberExpression[object.name='fs'][property.name=/^[A-z]+Sync$/]:not(MemberExpression[property.name='existsSync']), MemberExpression[property.name=/^[A-z]+Sync$/]:not(MemberExpression[property.name='existsSync']):has(MemberExpression[property.name='fs'])`,
+          message: 'Synchronous fs calls should not be used in Cypress. Use an async API instead.',
+        },
+      ],
     },
   },
 

From c34babcce072c1316ca5b89fa990069892220d8f Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 16:22:54 -0500
Subject: [PATCH 029/127] npm/vite-dev-server stylistic

---
 npm/vite-dev-server/eslint.config.ts           | 10 +++++-----
 npm/vite-dev-server/index.d.ts                 |  2 +-
 npm/vite-dev-server/src/plugins/cypress.ts     |  2 +-
 npm/vite-dev-server/test/resolveConfig.spec.ts |  2 +-
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/npm/vite-dev-server/eslint.config.ts b/npm/vite-dev-server/eslint.config.ts
index be2d4c16fd8a..59d3d5a4c460 100644
--- a/npm/vite-dev-server/eslint.config.ts
+++ b/npm/vite-dev-server/eslint.config.ts
@@ -6,8 +6,8 @@ export default [
   {
     languageOptions: {
       globals: {
-        process: 'readonly'
-      }
-    }
-  }
-]
\ No newline at end of file
+        process: 'readonly',
+      },
+    },
+  },
+]
diff --git a/npm/vite-dev-server/index.d.ts b/npm/vite-dev-server/index.d.ts
index 9ae0af320b63..5d960ddb8bba 100644
--- a/npm/vite-dev-server/index.d.ts
+++ b/npm/vite-dev-server/index.d.ts
@@ -1 +1 @@
-export * from "./dist"
+export * from './dist'
diff --git a/npm/vite-dev-server/src/plugins/cypress.ts b/npm/vite-dev-server/src/plugins/cypress.ts
index 7d85fdd07b97..f4345069308c 100644
--- a/npm/vite-dev-server/src/plugins/cypress.ts
+++ b/npm/vite-dev-server/src/plugins/cypress.ts
@@ -42,7 +42,7 @@ export const Cypress = (
   // eslint-disable-next-line no-restricted-syntax
   let loader = fs.readFileSync(INIT_FILEPATH, 'utf8')
 
-  devServerEvents.on('dev-server:specs:changed', ({ specs, options }: { specs: Spec[], options?: { neededForJustInTimeCompile: boolean }}) => {
+  devServerEvents.on('dev-server:specs:changed', ({ specs, options }: { specs: Spec[], options?: { neededForJustInTimeCompile: boolean } }) => {
     if (options?.neededForJustInTimeCompile) {
       // if an option is needed for just in time compile, no-op as this isn't supported in vite
       return
diff --git a/npm/vite-dev-server/test/resolveConfig.spec.ts b/npm/vite-dev-server/test/resolveConfig.spec.ts
index f027a8b28a8d..09f82e408d05 100644
--- a/npm/vite-dev-server/test/resolveConfig.spec.ts
+++ b/npm/vite-dev-server/test/resolveConfig.spec.ts
@@ -23,7 +23,7 @@ const getViteDevServerConfig = (projectRoot: string) => {
     framework: 'react',
   } as unknown as ViteDevServerConfig
 }
-const MAJOR_VERSIONS: ({version: 4, vite: any } | {version: 5, vite: any } | {version: 6, vite: any })[] = [
+const MAJOR_VERSIONS: ({ version: 4, vite: any } | { version: 5, vite: any } | { version: 6, vite: any })[] = [
   {
     version: 4,
     vite: vite4,

From 58a38ac22badc3e7720cb2624ec0ce9b2d7cff7b Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 16:24:54 -0500
Subject: [PATCH 030/127] npm/vite-plugin-cypress-esm stylistic

---
 npm/vite-plugin-cypress-esm/.eslintignore     |  5 ---
 npm/vite-plugin-cypress-esm/.eslintrc         | 32 -------------------
 .../client/moduleCache.js                     |  3 +-
 .../cypress/component/fixtures/Foo.tsx        |  1 -
 .../cypress/component/fixtures/MyAsyncMod.ts  |  1 +
 .../cypress/component/importSyntax.cy.ts      |  1 +
 .../cypress/component/stub.cy.tsx             |  6 ++--
 npm/vite-plugin-cypress-esm/eslint.config.ts  |  2 +-
 8 files changed, 8 insertions(+), 43 deletions(-)
 delete mode 100644 npm/vite-plugin-cypress-esm/.eslintignore
 delete mode 100644 npm/vite-plugin-cypress-esm/.eslintrc

diff --git a/npm/vite-plugin-cypress-esm/.eslintignore b/npm/vite-plugin-cypress-esm/.eslintignore
deleted file mode 100644
index 79afe972da7d..000000000000
--- a/npm/vite-plugin-cypress-esm/.eslintignore
+++ /dev/null
@@ -1,5 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
\ No newline at end of file
diff --git a/npm/vite-plugin-cypress-esm/.eslintrc b/npm/vite-plugin-cypress-esm/.eslintrc
deleted file mode 100644
index 7158598773c0..000000000000
--- a/npm/vite-plugin-cypress-esm/.eslintrc
+++ /dev/null
@@ -1,32 +0,0 @@
-{
-  "plugins": [
-    "cypress",
-    "@cypress/dev"
-  ],
-  "extends": [
-    "plugin:@cypress/dev/general",
-    "plugin:@cypress/dev/tests",
-    "plugin:@cypress/dev/react"
-  ],
-  "parser": "vue-eslint-parser",
-  "parserOptions": {
-    "parser": "@typescript-eslint/parser"
-  },
-  "env": {
-    "cypress/globals": true
-  },
-  "rules": {
-    "no-console": "off",
-    "mocha/no-global-tests": "off",
-    "react/jsx-filename-extension": [
-      "warn",
-      {
-        "extensions": [
-          ".js",
-          ".jsx",
-          ".tsx"
-        ]
-      }
-    ]
-  }
-}
diff --git a/npm/vite-plugin-cypress-esm/client/moduleCache.js b/npm/vite-plugin-cypress-esm/client/moduleCache.js
index 3309bdcba58c..20c905bcda06 100644
--- a/npm/vite-plugin-cypress-esm/client/moduleCache.js
+++ b/npm/vite-plugin-cypress-esm/client/moduleCache.js
@@ -175,7 +175,7 @@ function log (msg) {
   if (!debug) {
     return
   }
-
+  // eslint-disable-next-line no-console
   console.log(`[cypress:vite-plugin-cypress-esm]: ${msg}`)
 }
 
@@ -197,6 +197,7 @@ function cacheAndProxifyModule (id, module) {
 
     return moduleProxy
   } catch (err) {
+    // eslint-disable-next-line no-console
     console.warn(`Failed to proxy module ${id}, using original which will *not* support stub/spy`, err)
 
     return module
diff --git a/npm/vite-plugin-cypress-esm/cypress/component/fixtures/Foo.tsx b/npm/vite-plugin-cypress-esm/cypress/component/fixtures/Foo.tsx
index f485f06380d6..bcfae67f75eb 100644
--- a/npm/vite-plugin-cypress-esm/cypress/component/fixtures/Foo.tsx
+++ b/npm/vite-plugin-cypress-esm/cypress/component/fixtures/Foo.tsx
@@ -22,7 +22,6 @@ export class Dog extends Animal {
 }
 
 export class BarClassComponent extends React.Component<{ msg: string }> {
-  /* eslint-disable @typescript-eslint/no-useless-constructor */
   constructor (props) {
     super(props)
   }
diff --git a/npm/vite-plugin-cypress-esm/cypress/component/fixtures/MyAsyncMod.ts b/npm/vite-plugin-cypress-esm/cypress/component/fixtures/MyAsyncMod.ts
index c73dbed72e89..33efec920397 100644
--- a/npm/vite-plugin-cypress-esm/cypress/component/fixtures/MyAsyncMod.ts
+++ b/npm/vite-plugin-cypress-esm/cypress/component/fixtures/MyAsyncMod.ts
@@ -1,3 +1,4 @@
 export default function foo () {
+  // eslint-disable-next-line no-console
   console.log('foo')
 }
diff --git a/npm/vite-plugin-cypress-esm/cypress/component/importSyntax.cy.ts b/npm/vite-plugin-cypress-esm/cypress/component/importSyntax.cy.ts
index 1bd8b798ac80..51d26b75009c 100644
--- a/npm/vite-plugin-cypress-esm/cypress/component/importSyntax.cy.ts
+++ b/npm/vite-plugin-cypress-esm/cypress/component/importSyntax.cy.ts
@@ -136,6 +136,7 @@ describe('supports every combination of import syntax in a single file', () => {
   it(`import defaultExport4, {
   export5,
 } from './fixtures/kitchenSink'`, () => {
+  // eslint-disable-next-line no-console
     console.log(defaultExport4)
     expect(defaultExport4).to.deep.eq({
       export1: 'export1',
diff --git a/npm/vite-plugin-cypress-esm/cypress/component/stub.cy.tsx b/npm/vite-plugin-cypress-esm/cypress/component/stub.cy.tsx
index 6ded0642e0df..41c25ca73e0f 100644
--- a/npm/vite-plugin-cypress-esm/cypress/component/stub.cy.tsx
+++ b/npm/vite-plugin-cypress-esm/cypress/component/stub.cy.tsx
@@ -33,18 +33,18 @@ describe('stubbing ES modules', () => {
   })
 
   it('works with react class component', () => {
-    mount(<Foo.BarClassComponent msg='Hello world' />)
+    mount(<Foo.BarClassComponent msg="Hello world" />)
     cy.contains('Hello world').should('exist')
   })
 
   it('works with react function component', () => {
-    mount(<Foo.Foo msg='Hello world' />)
+    mount(<Foo.Foo msg="Hello world" />)
     cy.contains('Hello world').should('exist')
   })
 
   it('stubs react component', () => {
     cy.stub(Foo, 'Foo').callsFake(() => <h1>Stub Component</h1>)
-    mount(<Foo.Foo msg='Hello world' />)
+    mount(<Foo.Foo msg="Hello world" />)
     cy.contains('Stub Component').should('exist')
     cy.contains('Hello world').should('not.exist')
   })
diff --git a/npm/vite-plugin-cypress-esm/eslint.config.ts b/npm/vite-plugin-cypress-esm/eslint.config.ts
index 088413c81d73..8c91f1e0c081 100644
--- a/npm/vite-plugin-cypress-esm/eslint.config.ts
+++ b/npm/vite-plugin-cypress-esm/eslint.config.ts
@@ -2,4 +2,4 @@ import { baseConfig } from '../../eslint.config'
 
 export default [
   ...baseConfig,
-]
\ No newline at end of file
+]

From 816ba0d7cbca6e48cb97ce758a4ba2803475a6ef Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 16:27:25 -0500
Subject: [PATCH 031/127] npm/vue stylistic

---
 .../advanced/access-component/Message.vue     |  1 +
 .../component/basic/document-body.cy.js       |  2 ++
 .../cypress/component/basic/hello/Hello.vue   |  1 +
 npm/vue/eslint.config.ts                      | 10 +++---
 npm/vue/rollup.config.mjs                     |  4 +--
 npm/vue/src/index.ts                          | 31 +++++++++----------
 npm/vue/src/shims-vue.d.ts                    |  8 ++---
 npm/vue/test-tsd/index.d.ts                   |  7 ++---
 8 files changed, 33 insertions(+), 31 deletions(-)

diff --git a/npm/vue/cypress/component/advanced/access-component/Message.vue b/npm/vue/cypress/component/advanced/access-component/Message.vue
index 2ab0a3b8c6d7..32aef6e08d02 100644
--- a/npm/vue/cypress/component/advanced/access-component/Message.vue
+++ b/npm/vue/cypress/component/advanced/access-component/Message.vue
@@ -29,6 +29,7 @@ export default {
   emits: ['message-clicked'],
   methods: {
     handleClick () {
+      // eslint-disable-next-line no-console
       console.log('lalala')
       this.$emit('message-clicked', this.message)
     },
diff --git a/npm/vue/cypress/component/basic/document-body.cy.js b/npm/vue/cypress/component/basic/document-body.cy.js
index b7f396c8e484..f7dbe46004ad 100644
--- a/npm/vue/cypress/component/basic/document-body.cy.js
+++ b/npm/vue/cypress/component/basic/document-body.cy.js
@@ -5,7 +5,9 @@ describe('document.body', () => {
   it('is set correctly', () => {
     mount({
       mounted () {
+        // eslint-disable-next-line no-console
         console.log('mounted!')
+        // eslint-disable-next-line no-console
         console.log('document.body', document.body)
         document.body.innerText = 'Mounted!'
       },
diff --git a/npm/vue/cypress/component/basic/hello/Hello.vue b/npm/vue/cypress/component/basic/hello/Hello.vue
index e48b2e8f1508..66c36feddf6a 100644
--- a/npm/vue/cypress/component/basic/hello/Hello.vue
+++ b/npm/vue/cypress/component/basic/hello/Hello.vue
@@ -24,6 +24,7 @@ export default {
 
   computed: {
     error () {
+      // eslint-disable-next-line no-console
       console.log(this.username)
 
       return this.username.trim().length < 7
diff --git a/npm/vue/eslint.config.ts b/npm/vue/eslint.config.ts
index 3cadca00d647..4cf7a7b6a095 100644
--- a/npm/vue/eslint.config.ts
+++ b/npm/vue/eslint.config.ts
@@ -8,8 +8,8 @@ export default [
     files: ['**/*.vue'],
     languageOptions: {
       parserOptions: {
-        parser: ts.parser
-      }
-    }
-  }
-]
\ No newline at end of file
+        parser: ts.parser,
+      },
+    },
+  },
+]
diff --git a/npm/vue/rollup.config.mjs b/npm/vue/rollup.config.mjs
index 58c7fb56eb85..cc64def81639 100644
--- a/npm/vue/rollup.config.mjs
+++ b/npm/vue/rollup.config.mjs
@@ -4,13 +4,13 @@ const config = {
   external: [
     'vue',
     '@vue/compiler-dom',
-    '@vue/server-renderer'
+    '@vue/server-renderer',
   ],
   output: {
     globals: {
       vue: 'Vue',
       '@vue/compiler-dom': 'VueCompilerDOM',
-      '@vue/server-renderer': 'VueServerRenderer'
+      '@vue/server-renderer': 'VueServerRenderer',
     },
   },
 }
diff --git a/npm/vue/src/index.ts b/npm/vue/src/index.ts
index b3826b409b69..2e615eb800ad 100644
--- a/npm/vue/src/index.ts
+++ b/npm/vue/src/index.ts
@@ -1,4 +1,3 @@
-/* eslint-disable no-redeclare */
 /// <reference types="cypress" />
 import type {
   ComponentPublicInstance,
@@ -49,7 +48,7 @@ type GlobalMountOptions = Required<VTUMountingOptions<any>>['global']
 // when we mount a Vue component, we add it to the global Cypress object
 // so here we extend the global Cypress namespace and its Cypress interface
 declare global {
-  // eslint-disable-next-line no-redeclare
+
   namespace Cypress {
     interface Cypress {
       vueWrapper: VueWrapper<ComponentPublicInstance>
@@ -113,7 +112,7 @@ type ComponentMountingOptions<T> = T extends DefineComponent<
   : MountingOptions<any>
 
 // Class component (without vue-class-component) - no props
-export function mount<V extends {}>(
+export function mount<V extends {}> (
   originalComponent: {
     new (...args: any[]): V
     __vccOpts: any
@@ -125,7 +124,7 @@ export function mount<V extends {}>(
 }>
 
 // Class component (without vue-class-component) - props
-export function mount<V extends {}, P>(
+export function mount<V extends {}, P> (
   originalComponent: {
     new (...args: any[]): V
     __vccOpts: any
@@ -138,7 +137,7 @@ export function mount<V extends {}, P>(
 }>
 
 // Class component - no props
-export function mount<V extends {}>(
+export function mount<V extends {}> (
   originalComponent: {
     new (...args: any[]): V
     registerHooks(keys: string[]): void
@@ -150,7 +149,7 @@ export function mount<V extends {}>(
 }>
 
 // Class component - props
-export function mount<V extends {}, P>(
+export function mount<V extends {}, P> (
   originalComponent: {
     new (...args: any[]): V
     props(Props: P): any
@@ -163,7 +162,7 @@ export function mount<V extends {}, P>(
 }>
 
 // Functional component with emits
-export function mount<Props extends {}, E extends EmitsOptions = {}>(
+export function mount<Props extends {}, E extends EmitsOptions = {}> (
   originalComponent: FunctionalComponent<Props, E>,
   options?: MountingOptions<Props & PublicProps> & Record<string, any>
 ): Cypress.Chainable<{
@@ -184,8 +183,8 @@ export function mount<
   EE extends string = string,
   PP = PublicProps,
   Props = Readonly<ExtractPropTypes<PropsOrPropOptions>>,
-  Defaults extends {} = ExtractDefaultPropTypes<PropsOrPropOptions>
->(
+  Defaults extends {} = ExtractDefaultPropTypes<PropsOrPropOptions>,
+> (
   component: DefineComponent<
     PropsOrPropOptions,
     RawBindings,
@@ -246,7 +245,7 @@ export function mount<
 }>
 
 // component declared by vue-tsc ScriptSetup
-export function mount<T extends DefineComponent<any, any, any, any, any>>(
+export function mount<T extends DefineComponent<any, any, any, any, any>> (
   component: T,
   options?: ComponentMountingOptions<T>
 ): Cypress.Chainable<{
@@ -264,8 +263,8 @@ export function mount<
   E extends EmitsOptions = Record<string, any>,
   Mixin extends ComponentOptionsMixin = ComponentOptionsMixin,
   Extends extends ComponentOptionsMixin = ComponentOptionsMixin,
-  EE extends string = string
->(
+  EE extends string = string,
+> (
   componentOptions: ComponentOptionsWithoutProps<
     Props,
     RawBindings,
@@ -304,8 +303,8 @@ export function mount<
   EE extends string = string,
   Props extends Readonly<{ [key in PropNames]?: any }> = Readonly<{
     [key in PropNames]?: any
-  }>
->(
+  }>,
+> (
   componentOptions: ComponentOptionsWithArrayProps<
     PropNames,
     RawBindings,
@@ -336,8 +335,8 @@ export function mount<
   E extends EmitsOptions = Record<string, any>,
   Mixin extends ComponentOptionsMixin = ComponentOptionsMixin,
   Extends extends ComponentOptionsMixin = ComponentOptionsMixin,
-  EE extends string = string
->(
+  EE extends string = string,
+> (
   componentOptions: ComponentOptionsWithObjectProps<
     PropsOptions,
     RawBindings,
diff --git a/npm/vue/src/shims-vue.d.ts b/npm/vue/src/shims-vue.d.ts
index f43ed923b679..ac1ded792334 100644
--- a/npm/vue/src/shims-vue.d.ts
+++ b/npm/vue/src/shims-vue.d.ts
@@ -1,5 +1,5 @@
 declare module '*.vue' {
-	import { DefineComponent } from 'vue'
-	const component: DefineComponent<{}, {}, any>
-	export default component
-}
\ No newline at end of file
+  import { DefineComponent } from 'vue'
+  const component: DefineComponent<{}, {}, any>
+  export default component
+}
diff --git a/npm/vue/test-tsd/index.d.ts b/npm/vue/test-tsd/index.d.ts
index 61aeaea7a3b2..cc81ad487355 100644
--- a/npm/vue/test-tsd/index.d.ts
+++ b/npm/vue/test-tsd/index.d.ts
@@ -1,4 +1,3 @@
-export function expectType<T>(value: T): void
-export function expectError<T>(value: T): void
-export function expectAssignable<T, T2 extends T = T>(value: T2): void
-
+export function expectType<T> (value: T): void
+export function expectError<T> (value: T): void
+export function expectAssignable<T, T2 extends T = T> (value: T2): void

From 124ad491807661fcc26ffee0e6ba3c675aaac432 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 16:28:14 -0500
Subject: [PATCH 032/127] npm/webpack-batteries-included stylistic

---
 .../eslint.config.ts                                   | 10 +++++-----
 .../test/fixtures/mjs_spec.mjs                         |  2 +-
 .../test/fixtures/various_imports_spec.js              |  2 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/npm/webpack-batteries-included-preprocessor/eslint.config.ts b/npm/webpack-batteries-included-preprocessor/eslint.config.ts
index 0afa204ee27e..751f84b2ae2d 100644
--- a/npm/webpack-batteries-included-preprocessor/eslint.config.ts
+++ b/npm/webpack-batteries-included-preprocessor/eslint.config.ts
@@ -6,8 +6,8 @@ export default [
   {
   languageOptions: {
     globals: {
-      ...globals.node
-    }
-  }
-}
-]
\ No newline at end of file
+      ...globals.node,
+    },
+  },
+},
+]
diff --git a/npm/webpack-batteries-included-preprocessor/test/fixtures/mjs_spec.mjs b/npm/webpack-batteries-included-preprocessor/test/fixtures/mjs_spec.mjs
index babd0da4930f..18454bd2850a 100644
--- a/npm/webpack-batteries-included-preprocessor/test/fixtures/mjs_spec.mjs
+++ b/npm/webpack-batteries-included-preprocessor/test/fixtures/mjs_spec.mjs
@@ -3,6 +3,6 @@ import { expect } from 'chai'
 // make sure built in resolves correctly in mjs through the provide plugin, including process & buffer
 process.env.foo = 'bar'
 
-const buffer = new Buffer('foo');
+const buffer = new Buffer('foo')
 
 expect(true).to.be.true
diff --git a/npm/webpack-batteries-included-preprocessor/test/fixtures/various_imports_spec.js b/npm/webpack-batteries-included-preprocessor/test/fixtures/various_imports_spec.js
index c07ee74a8df6..1172468aec30 100644
--- a/npm/webpack-batteries-included-preprocessor/test/fixtures/various_imports_spec.js
+++ b/npm/webpack-batteries-included-preprocessor/test/fixtures/various_imports_spec.js
@@ -2,7 +2,7 @@
 // for .mjs files. don't upgrade graphql from 14.0.0 or it won't reproduce
 // the issue properly
 // https://github.com/cypress-io/cypress/issues/8361
-import graphql from 'graphql' // eslint-disable-line no-unused-vars
+import graphql from 'graphql'
 
 import { fromJs } from './file-types/js-file'
 import { fromJsx } from './file-types/jsx-file'

From 3cb0c44b9257e96d357a2438dd2822bc0d8d226f Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 16:30:27 -0500
Subject: [PATCH 033/127] npm/webpack-dev-server stylistic

---
 npm/webpack-dev-server/eslint.config.ts                   | 6 +++---
 npm/webpack-dev-server/src/CypressCTWebpackPlugin.ts      | 2 +-
 npm/webpack-dev-server/src/helpers/angularHandler.ts      | 2 +-
 .../src/helpers/sourceRelativeWebpackModules.ts           | 8 ++++----
 npm/webpack-dev-server/test/devServer-e2e.spec.ts         | 2 ++
 npm/webpack-dev-server/test/fixtures/dependency.js        | 2 +-
 npm/webpack-dev-server/test/fixtures/webpack.config.js    | 8 ++++----
 .../test/sourceRelativeWebpackModules.spec.ts             | 2 ++
 .../test/test-helpers/createModuleMatrixResult.ts         | 2 +-
 9 files changed, 19 insertions(+), 15 deletions(-)

diff --git a/npm/webpack-dev-server/eslint.config.ts b/npm/webpack-dev-server/eslint.config.ts
index c61f466716ee..a00264fdb05b 100644
--- a/npm/webpack-dev-server/eslint.config.ts
+++ b/npm/webpack-dev-server/eslint.config.ts
@@ -4,6 +4,6 @@ import globals from 'globals'
 export default [
   ...baseConfig,
   {
-    ignores: ['__snapshots__/**/*', 'test/fixtures/compilation-fails.spec.js']
-  }
-]
\ No newline at end of file
+    ignores: ['__snapshots__/**/*', 'test/fixtures/compilation-fails.spec.js'],
+  },
+]
diff --git a/npm/webpack-dev-server/src/CypressCTWebpackPlugin.ts b/npm/webpack-dev-server/src/CypressCTWebpackPlugin.ts
index c80f3ab8c294..fd931f82c1f6 100644
--- a/npm/webpack-dev-server/src/CypressCTWebpackPlugin.ts
+++ b/npm/webpack-dev-server/src/CypressCTWebpackPlugin.ts
@@ -108,7 +108,7 @@ export class CypressCTWebpackPlugin {
    *
    * See https://github.com/cypress-io/cypress/issues/24398
    */
-  private onSpecsChange = async ({ specs, options }: { specs: Cypress.Cypress['spec'][], options?: { neededForJustInTimeCompile: boolean}}) => {
+  private onSpecsChange = async ({ specs, options }: { specs: Cypress.Cypress['spec'][], options?: { neededForJustInTimeCompile: boolean } }) => {
     if (!this.compilation || _.isEqual(specs, this.files)) {
       return
     }
diff --git a/npm/webpack-dev-server/src/helpers/angularHandler.ts b/npm/webpack-dev-server/src/helpers/angularHandler.ts
index 707fb65c3dc1..99e65be4f567 100644
--- a/npm/webpack-dev-server/src/helpers/angularHandler.ts
+++ b/npm/webpack-dev-server/src/helpers/angularHandler.ts
@@ -14,7 +14,7 @@ const debug = debugLib(debugPrefix)
 
 export type BuildOptions = Record<string, any>
 
-export type AngularWebpackDevServerConfig = Extract<WebpackDevServerConfig, {framework: 'angular'}>
+export type AngularWebpackDevServerConfig = Extract<WebpackDevServerConfig, { framework: 'angular' }>
 
 type Configurations = {
   configurations?: {
diff --git a/npm/webpack-dev-server/src/helpers/sourceRelativeWebpackModules.ts b/npm/webpack-dev-server/src/helpers/sourceRelativeWebpackModules.ts
index 627212aaaae0..db01254eca27 100644
--- a/npm/webpack-dev-server/src/helpers/sourceRelativeWebpackModules.ts
+++ b/npm/webpack-dev-server/src/helpers/sourceRelativeWebpackModules.ts
@@ -132,7 +132,7 @@ export function sourceWebpack (config: WebpackDevServerConfig, framework: Source
       paths: [searchRoot],
     })
   } catch (e) {
-    if ((e as {code?: string}).code !== 'MODULE_NOT_FOUND') {
+    if ((e as { code?: string }).code !== 'MODULE_NOT_FOUND') {
       debug('Webpack: Failed to source webpack - %s', e)
       throw e
     }
@@ -196,7 +196,7 @@ export function sourceWebpackDevServer (config: WebpackDevServerConfig, webpackM
       paths: [searchRoot],
     })
   } catch (e) {
-    if ((e as {code?: string}).code !== 'MODULE_NOT_FOUND') {
+    if ((e as { code?: string }).code !== 'MODULE_NOT_FOUND') {
       debug('WebpackDevServer: Failed to source webpack-dev-server - %s', e)
       throw e
     }
@@ -248,7 +248,7 @@ export function sourceHtmlWebpackPlugin (config: WebpackDevServerConfig, framewo
     // we shouldn't be concerned with using our own copy if they've shipped w/ an earlier version
     htmlWebpackPlugin.majorVersion = getMajorVersion(htmlWebpackPlugin.packageJson, [4, 5])
   } catch (e) {
-    const err = e as Error & {code?: string}
+    const err = e as Error & { code?: string }
 
     if (err.code !== 'MODULE_NOT_FOUND' && !err.message.includes('Unexpected major version')) {
       debug('HtmlWebpackPlugin: Failed to source html-webpack-plugin - %s', e)
@@ -291,7 +291,7 @@ export function sourceDefaultWebpackDependencies (config: WebpackDevServerConfig
   }
 }
 
-export function getMajorVersion <T extends number> (json: PackageJson, acceptedVersions: T[]): T {
+export function getMajorVersion<T extends number> (json: PackageJson, acceptedVersions: T[]): T {
   const major = Number(json.version.split('.')[0])
 
   if (!acceptedVersions.includes(major as T)) {
diff --git a/npm/webpack-dev-server/test/devServer-e2e.spec.ts b/npm/webpack-dev-server/test/devServer-e2e.spec.ts
index cf6d3c863a73..0bb6c96dfb6d 100644
--- a/npm/webpack-dev-server/test/devServer-e2e.spec.ts
+++ b/npm/webpack-dev-server/test/devServer-e2e.spec.ts
@@ -187,6 +187,7 @@ describe('#devServer', () => {
       absolute: `${root}/test/fixtures/bar.spec.js`,
     }
 
+    // eslint-disable-next-line no-restricted-syntax
     const oldmtime = fs.statSync(cypressConfig.indexHtmlFile).mtimeMs
 
     await once(devServerEvents, 'dev-server:compile:success')
@@ -195,6 +196,7 @@ describe('#devServer', () => {
     })
 
     await once(devServerEvents, 'dev-server:compile:success')
+    // eslint-disable-next-line no-restricted-syntax
     const updatedmtime = fs.statSync(cypressConfig.indexHtmlFile).mtimeMs
 
     expect(oldmtime).to.not.equal(updatedmtime)
diff --git a/npm/webpack-dev-server/test/fixtures/dependency.js b/npm/webpack-dev-server/test/fixtures/dependency.js
index 693da49fc40b..336ce12bb910 100644
--- a/npm/webpack-dev-server/test/fixtures/dependency.js
+++ b/npm/webpack-dev-server/test/fixtures/dependency.js
@@ -1 +1 @@
-export {}
\ No newline at end of file
+export {}
diff --git a/npm/webpack-dev-server/test/fixtures/webpack.config.js b/npm/webpack-dev-server/test/fixtures/webpack.config.js
index ae138660dd9d..c8b08781bdfc 100644
--- a/npm/webpack-dev-server/test/fixtures/webpack.config.js
+++ b/npm/webpack-dev-server/test/fixtures/webpack.config.js
@@ -1,11 +1,11 @@
 class FromWebpackConfigFile {
-  apply() {
+  apply () {
 
   }
 }
 
 module.exports = {
   plugins: [
-    new FromWebpackConfigFile()
-  ]
-}
\ No newline at end of file
+    new FromWebpackConfigFile(),
+  ],
+}
diff --git a/npm/webpack-dev-server/test/sourceRelativeWebpackModules.spec.ts b/npm/webpack-dev-server/test/sourceRelativeWebpackModules.spec.ts
index 94c5663aafee..9e667ea84b84 100644
--- a/npm/webpack-dev-server/test/sourceRelativeWebpackModules.spec.ts
+++ b/npm/webpack-dev-server/test/sourceRelativeWebpackModules.spec.ts
@@ -57,6 +57,7 @@ describe('sourceDefaultWebpackDependencies', () => {
     describe(fixture, () => {
       it(`sources the correct webpack versions for ${fixture}`, async () => {
         const { result, projectRoot } = await sourceModulesForProject(fixture as ProjectDirs[number])
+        // eslint-disable-next-line no-restricted-syntax
         const projectNodeModules = fs.realpathSync(path.resolve(projectRoot, 'node_modules'))
 
         expect(result.webpack.majorVersion).to.eq(versionsToMatch.webpack, 'match webpackVersion')
@@ -72,6 +73,7 @@ describe('sourceDefaultWebpackDependencies', () => {
     const localWebpack = require('webpack')
 
     const { result, projectRoot } = await sourceModulesForProject('webpack5_wds5-react')
+    // eslint-disable-next-line no-restricted-syntax
     const projectNodeModules = fs.realpathSync(path.resolve(projectRoot, 'node_modules'))
 
     expect(localWebpack).not.to.eq(result.webpack.module)
diff --git a/npm/webpack-dev-server/test/test-helpers/createModuleMatrixResult.ts b/npm/webpack-dev-server/test/test-helpers/createModuleMatrixResult.ts
index 01518f415aa6..bc5ed5a44460 100644
--- a/npm/webpack-dev-server/test/test-helpers/createModuleMatrixResult.ts
+++ b/npm/webpack-dev-server/test/test-helpers/createModuleMatrixResult.ts
@@ -1,7 +1,7 @@
 import path from 'path'
 import type { SourceRelativeWebpackResult } from '../../src/helpers/sourceRelativeWebpackModules'
 
-type ModulesDef = {[K in keyof ModuleMatrixResultOptions]: Record<ModuleMatrixResultOptions[K], string>}
+type ModulesDef = { [K in keyof ModuleMatrixResultOptions]: Record<ModuleMatrixResultOptions[K], string> }
 
 const moduleSources: ModulesDef = {
   webpack: {

From 9d84f3db57ae11d690c87c46f6f215c72e0ec1d3 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 16:32:06 -0500
Subject: [PATCH 034/127] npm/webpack-preprocessor stylistic

---
 npm/webpack-preprocessor/eslint.config.ts             | 10 +++++-----
 npm/webpack-preprocessor/index.ts                     |  2 +-
 npm/webpack-preprocessor/scripts/test-webpack-5.js    |  2 ++
 npm/webpack-preprocessor/test/e2e/compilation.spec.js |  1 +
 npm/webpack-preprocessor/test/e2e/helpers.js          |  2 +-
 5 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/npm/webpack-preprocessor/eslint.config.ts b/npm/webpack-preprocessor/eslint.config.ts
index 3f74a8464348..41fa2d3a7258 100644
--- a/npm/webpack-preprocessor/eslint.config.ts
+++ b/npm/webpack-preprocessor/eslint.config.ts
@@ -4,13 +4,13 @@ import globals from 'globals'
 export default [
   ...baseConfig,
   {
-    ignores: ['__snapshots__/**/*', 'cypress/tests/e2e/compile-error.js', 'test/fixtures/syntax_error_spec.js']
+    ignores: ['__snapshots__/**/*', 'cypress/tests/e2e/compile-error.js', 'test/fixtures/syntax_error_spec.js'],
   },
   {
     languageOptions: {
       globals: {
         ...globals.node,
-      }
-    }
-  }
-]
\ No newline at end of file
+      },
+    },
+  },
+]
diff --git a/npm/webpack-preprocessor/index.ts b/npm/webpack-preprocessor/index.ts
index 7e5c8af2696d..db80399dbaaa 100644
--- a/npm/webpack-preprocessor/index.ts
+++ b/npm/webpack-preprocessor/index.ts
@@ -18,7 +18,7 @@ interface BundleObject {
 }
 
 // bundle promises from input spec filename to output bundled file paths
-let bundles: {[key: string]: BundleObject} = {}
+let bundles: { [key: string]: BundleObject } = {}
 
 // we don't automatically load the rules, so that the babel dependencies are
 // not required if a user passes in their own configuration
diff --git a/npm/webpack-preprocessor/scripts/test-webpack-5.js b/npm/webpack-preprocessor/scripts/test-webpack-5.js
index bb0945ee56a2..a1f290865915 100644
--- a/npm/webpack-preprocessor/scripts/test-webpack-5.js
+++ b/npm/webpack-preprocessor/scripts/test-webpack-5.js
@@ -20,6 +20,7 @@ const main = async () => {
   const install = () => execa('yarn', ['install', '--ignore-scripts'], { stdio: 'inherit' })
 
   const resetPkg = async () => {
+    // eslint-disable-next-line no-restricted-syntax
     fs.writeFileSync(pkgJsonPath, originalPkg, 'utf8')
     await install()
   }
@@ -41,6 +42,7 @@ const main = async () => {
   delete pkg.devDependencies['webpack']
   // eslint-disable-next-line no-console
   console.log('[@cypress/webpack-preprocessor]: updating package.json...')
+  // eslint-disable-next-line no-restricted-syntax
   fs.writeFileSync(pkgJsonPath, JSON.stringify(pkg, null, 2))
 
   // eslint-disable-next-line no-console
diff --git a/npm/webpack-preprocessor/test/e2e/compilation.spec.js b/npm/webpack-preprocessor/test/e2e/compilation.spec.js
index 1d1816f4a43a..c085ed999630 100644
--- a/npm/webpack-preprocessor/test/e2e/compilation.spec.js
+++ b/npm/webpack-preprocessor/test/e2e/compilation.spec.js
@@ -52,6 +52,7 @@ describe('webpack preprocessor - e2e', () => {
     file = createFile()
 
     return preprocessor(options)(file).then((outputPath) => {
+      // eslint-disable-next-line no-restricted-syntax
       snapshot(fs.readFileSync(outputPath).toString())
     })
   })
diff --git a/npm/webpack-preprocessor/test/e2e/helpers.js b/npm/webpack-preprocessor/test/e2e/helpers.js
index 621155b7f1df..12c42bf7839c 100644
--- a/npm/webpack-preprocessor/test/e2e/helpers.js
+++ b/npm/webpack-preprocessor/test/e2e/helpers.js
@@ -1,4 +1,4 @@
-/* eslint-disable no-console, prefer-rest-params */
+/* eslint-disable no-console */
 
 const { codeFrameColumns } = require('@babel/code-frame')
 const fs = require('fs-extra')

From 27797d0d9cf16887293f11b4084be5bdb8bfd9c7 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 16:37:28 -0500
Subject: [PATCH 035/127] cli stylistic

---
 cli/eslint.config.ts                | 18 +++++++++---------
 cli/lib/util.js                     |  3 +--
 cli/scripts/clean.js                |  2 ++
 cli/scripts/post-install.js         |  8 +++++---
 cli/test/lib/tasks/download_spec.js |  1 +
 cli/test/lib/tasks/verify_spec.js   |  2 --
 cli/test/spec_helper.js             |  1 -
 cli/test/support/stdout.js          |  1 -
 8 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/cli/eslint.config.ts b/cli/eslint.config.ts
index 9bf8d3c40d11..cd64459c7d23 100644
--- a/cli/eslint.config.ts
+++ b/cli/eslint.config.ts
@@ -20,7 +20,7 @@
 }
 */
 import path from 'path'
-import { baseConfig } from "../eslint.config"
+import { baseConfig } from '../eslint.config'
 import globals from 'globals'
 
 export default [
@@ -33,9 +33,9 @@ export default [
         tsconfigRootDir: path.join(__dirname, '../packages/ts/tsconfig.json'),
       },
       globals: {
-        ...globals.node
-      }
-    }
+        ...globals.node,
+      },
+    },
   },
   {
     ignores: [
@@ -48,7 +48,7 @@ export default [
       'svelte/**/*',
       'vue/**/*',
       'types/**/*',
-    ]
+    ],
   },
   {
     files: ['test/**/*.{ts,js}'],
@@ -56,7 +56,7 @@ export default [
       globals: {
         sinon: 'readonly',
         lib: 'readonly',
-      }
-    }
-  }
-]
\ No newline at end of file
+      },
+    },
+  },
+]
diff --git a/cli/lib/util.js b/cli/lib/util.js
index 4f7a67e88e9e..0abbe4c13e58 100644
--- a/cli/lib/util.js
+++ b/cli/lib/util.js
@@ -467,7 +467,7 @@ const util = {
 
     async function _getRealArch () {
       const osPlatform = os.platform()
-      // eslint-disable-next-line no-restricted-syntax
+
       const osArch = os.arch()
 
       debug('detecting arch %o', { osPlatform, osArch })
@@ -492,7 +492,6 @@ const util = {
         if (['aarch64_be', 'aarch64', 'armv8b', 'armv8l'].includes(stdout)) return 'arm64'
       }
 
-      // eslint-disable-next-line no-restricted-syntax
       const pkgArch = arch()
 
       if (pkgArch === 'x86') return 'ia32'
diff --git a/cli/scripts/clean.js b/cli/scripts/clean.js
index 406d3b225aa4..871bc19bae59 100644
--- a/cli/scripts/clean.js
+++ b/cli/scripts/clean.js
@@ -2,10 +2,12 @@ const fs = require('fs-extra')
 const path = require('path')
 const { includeTypes } = require('./utils')
 
+// eslint-disable-next-line no-restricted-syntax
 fs.removeSync(path.join(__dirname, '..', 'build'))
 
 includeTypes.forEach((folder) => {
   try {
+    // eslint-disable-next-line no-restricted-syntax
     fs.removeSync(path.join(__dirname, '..', 'types', folder))
   } catch (e) {
     //
diff --git a/cli/scripts/post-install.js b/cli/scripts/post-install.js
index fdc4c6d947a5..08b822f49213 100644
--- a/cli/scripts/post-install.js
+++ b/cli/scripts/post-install.js
@@ -19,12 +19,12 @@ shell.set('-e') // any error is fatal
 // This ensures that globals like Cypress.$, Cypress._ etc are property typed
 // yet we do not install "@types/.." packages with "npm install cypress"
 // because they can conflict with user's own libraries
-
+// eslint-disable-next-line no-restricted-syntax
 fs.ensureDirSync(join(__dirname, '..', 'types'))
 
 includeTypes.forEach((folder) => {
   const source = resolvePkg(`@types/${folder}`, { cwd: __dirname })
-
+  // eslint-disable-next-line no-restricted-syntax
   fs.copySync(source, join(__dirname, '..', 'types', folder))
 })
 
@@ -75,6 +75,7 @@ shell.sed('-i', 'from \'sinon\';', 'from \'../sinon\';', sinonChaiFilename)
 
 // copy experimental network stubbing type definitions
 // so users can import: `import 'cypress/types/net-stubbing'`
+// eslint-disable-next-line no-restricted-syntax
 fs.copySync(resolvePkg('@packages/net-stubbing/lib/external-types.ts'), 'types/net-stubbing.d.ts')
 
 // https://github.com/cypress-io/cypress/issues/18069
@@ -90,11 +91,12 @@ const filesToUncomment = [
 
 filesToUncomment.forEach((file) => {
   const filePath = join(__dirname, '../types', file)
+  // eslint-disable-next-line no-restricted-syntax
   const str = fs.readFileSync(filePath).toString()
 
   const result = str.split('\n').map((line) => {
     return line.startsWith('//z ') ? line.substring(4) : line
   }).join('\n')
-
+  // eslint-disable-next-line no-restricted-syntax
   fs.writeFileSync(filePath, result)
 })
diff --git a/cli/test/lib/tasks/download_spec.js b/cli/test/lib/tasks/download_spec.js
index b808492e0389..759c7adbdbe3 100644
--- a/cli/test/lib/tasks/download_spec.js
+++ b/cli/test/lib/tasks/download_spec.js
@@ -186,6 +186,7 @@ describe('lib/tasks/download', function () {
   context('verify downloaded file', function () {
     before(function () {
       this.expectedChecksum = hasha.fromFileSync(examplePath)
+      // eslint-disable-next-line no-restricted-syntax
       this.expectedFileSize = fs.statSync(examplePath).size
       this.onProgress = sinon.stub().returns(undefined)
       debug('example file %s should have checksum %s and file size %d',
diff --git a/cli/test/lib/tasks/verify_spec.js b/cli/test/lib/tasks/verify_spec.js
index 78a8272eec37..5fa96d5e947f 100644
--- a/cli/test/lib/tasks/verify_spec.js
+++ b/cli/test/lib/tasks/verify_spec.js
@@ -31,8 +31,6 @@ const DEFAULT_VERIFY_TIMEOUT = 30000
 let stdout
 let spawnedProcess
 
-/* eslint-disable no-octal */
-
 context('lib/tasks/verify', () => {
   require('mocha-banner').register()
 
diff --git a/cli/test/spec_helper.js b/cli/test/spec_helper.js
index 41ff9d6e8b12..0118c7c46b0c 100644
--- a/cli/test/spec_helper.js
+++ b/cli/test/spec_helper.js
@@ -69,7 +69,6 @@ function throwIfFnNotStubbed (stub, method) {
 const $stub = sinon.stub
 
 sinon.stub = function (obj, method) {
-  /* eslint-disable prefer-rest-params */
   const stub = $stub.apply(this, arguments)
 
   let fns = [method]
diff --git a/cli/test/support/stdout.js b/cli/test/support/stdout.js
index e6372856873f..b4b34c4861a1 100644
--- a/cli/test/support/stdout.js
+++ b/cli/test/support/stdout.js
@@ -9,7 +9,6 @@ module.exports = {
     process.stdout.write = function (str) {
       logs.push(str)
 
-      /* eslint-disable prefer-rest-params */
       write.apply(this, arguments)
     }
 

From d7bac786f2bfe17b1887c338dae559d17279c043 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 14 Jan 2025 17:16:10 -0500
Subject: [PATCH 036/127] new linting for packages/app

---
 eslint.config.ts                              | 26 +++++++++++++++++++
 packages/app/cypress/e2e/run-all-specs.cy.ts  |  1 +
 .../e2e/runner/reporter-ct-mount-hover.cy.ts  |  2 +-
 .../runner/runner-ct.justInTimeCompile.cy.ts  |  2 +-
 .../e2e/specs_list_actual_git_repo.cy.ts      |  2 ++
 .../cypress/e2e/specs_list_latest_runs.cy.ts  |  6 ++---
 .../cypress/e2e/specs_list_no_git_repo.cy.ts  |  1 +
 packages/app/cypress/tasks/git.ts             |  3 +++
 packages/app/cypress/tasks/mochaEvents.ts     |  3 +++
 packages/app/eslint.config.ts                 | 22 ++++++++++++++++
 packages/app/package.json                     |  2 +-
 packages/app/src/components/FileMatch.cy.tsx  |  2 +-
 .../app/src/composables/useTestingType.cy.tsx |  2 +-
 .../app/src/debug/DebugArtifactLink.cy.tsx    |  2 +-
 packages/app/src/debug/DebugRunNavigation.vue |  2 +-
 packages/app/src/debug/DebugSpec.cy.tsx       | 14 +++++-----
 packages/app/src/debug/DebugSpec.vue          |  4 +--
 .../app/src/debug/GroupedDebugFailedTest.vue  |  2 +-
 packages/app/src/debug/StatsMetadata.vue      |  2 +-
 packages/app/src/debug/utils/DebugMapping.ts  |  6 ++---
 .../src/navigation/SidebarNavigation.cy.tsx   |  2 +-
 packages/app/src/pages/Debug.vue              |  2 +-
 packages/app/src/paths.ts                     |  5 ++--
 packages/app/src/runner/ResizablePanels.vue   |  2 +-
 packages/app/src/runner/aut-iframe.ts         |  2 +-
 packages/app/src/runner/event-manager.ts      |  3 +--
 .../app/src/runner/events/capture-protocol.ts |  2 +-
 .../src/runner/studio/AssertionsMenu.ce.vue   |  1 +
 packages/app/src/runs/RunCard.vue             | 22 ++++++++--------
 packages/app/src/runs/RunsLayout.vue          |  2 +-
 packages/app/src/runs/useGitTreeRuns.ts       |  2 +-
 .../src/settings/project/projectSettings.ts   |  2 +-
 .../project/renderers/RenderPrimitive.vue     |  2 +-
 .../renderers/RendererPrimitive.cy.tsx        |  2 +-
 packages/app/src/specs/HighlightedText.vue    |  2 +-
 packages/app/src/specs/InlineSpecList.cy.tsx  |  2 +-
 .../app/src/specs/InlineSpecListHeader.cy.tsx |  2 +-
 .../app/src/specs/SpecsListRunWatcher.vue     |  2 +-
 .../generators/ExpandableFileChooser.vue      |  1 -
 .../specs/generators/ExpandableFileList.vue   |  2 +-
 .../app/src/specs/generators/FileChooser.vue  |  1 -
 packages/app/src/specs/spec-utils.ts          |  2 +-
 .../app/src/specs/tree/useCollapsibleTree.ts  | 10 +++----
 .../specs/tree/useVirtualListNavigation.ts    |  2 +-
 44 files changed, 119 insertions(+), 64 deletions(-)
 create mode 100644 packages/app/eslint.config.ts

diff --git a/eslint.config.ts b/eslint.config.ts
index 2b706840245e..d2c0c0d87d62 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -25,6 +25,16 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
     'arrowParens': true,
   }),
 
+  // set up ts parser
+  {
+    files: ['**/*.{ts,js,jsx,vue}'],
+    languageOptions: {
+      parserOptions: {
+        parser: ts.parser,
+      },
+    },
+  },
+
   // overrides for stylistic rules
   {
     rules: {
@@ -43,6 +53,16 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       '@stylistic/indent-binary-ops': 'off',
       '@stylistic/template-curly-spacing': 'off',
       '@stylistic/no-mixed-operators': 'off',
+      '@stylistic/jsx-tag-spacing': 'off',
+      '@stylistic/jsx-function-call-newline': 'off',
+      '@stylistic/jsx-wrap-multilines': 'off',
+      '@stylistic/jsx-closing-tag-location': 'off',
+      '@stylistic/jsx-first-prop-new-line': 'off',
+      '@stylistic/jsx-closing-bracket-location': 'off',
+      '@stylistic/jsx-one-expression-per-line': 'off',
+      '@stylistic/jsx-max-props-per-line': 'off',
+      '@stylistic/jsx-curly-brace-presence': 'off',
+      '@stylistic/jsx-quotes': 'off',
     },
   },
 
@@ -87,6 +107,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       'no-global-assign': 'off',
       'no-unsafe-finally': 'off',
       'no-async-promise-executor': 'off',
+      'no-unsafe-optional-chaining': 'off',
 
       '@typescript-eslint/no-unused-expressions': 'off',
       '@typescript-eslint/no-require-imports': 'off',
@@ -102,10 +123,15 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
 
       'vue/multi-word-component-names': 'off',
       'vue/html-closing-bracket-spacing': 'off',
+      'vue/no-dupe-keys': 'off',
+      'vue/v-on-event-hyphenation': 'off',
+      'vue/attribute-hyphenation': 'off',
+      'vue/no-useless-template-attributes': 'off',
 
       'cypress/no-unnecessary-waiting': 'off',
       'cypress/unsafe-to-chain-command': 'off',
       'cypress/no-async-tests': 'off',
+      'cypress/no-assigning-return-values': 'warn',
     },
   },
 
diff --git a/packages/app/cypress/e2e/run-all-specs.cy.ts b/packages/app/cypress/e2e/run-all-specs.cy.ts
index d5f17c82eb23..a1e6f827335b 100644
--- a/packages/app/cypress/e2e/run-all-specs.cy.ts
+++ b/packages/app/cypress/e2e/run-all-specs.cy.ts
@@ -18,6 +18,7 @@ describe('run-all-specs', () => {
       return cy.findByTestId('run-all-specs-for-all').click()
     }
 
+    // eslint-disable cypress/no-assigning-return-values
     const command = cy.get('[data-cy=spec-item-directory]').contains(platformDir)
 
     return command.realHover().then(() => {
diff --git a/packages/app/cypress/e2e/runner/reporter-ct-mount-hover.cy.ts b/packages/app/cypress/e2e/runner/reporter-ct-mount-hover.cy.ts
index ded41c185eeb..7ae3afd18417 100644
--- a/packages/app/cypress/e2e/runner/reporter-ct-mount-hover.cy.ts
+++ b/packages/app/cypress/e2e/runner/reporter-ct-mount-hover.cy.ts
@@ -2,7 +2,7 @@ import type { fixtureDirs } from '@tooling/system-tests'
 
 type ProjectDirs = typeof fixtureDirs
 
-const PROJECTS: {projectName: ProjectDirs[number], test: string}[] = [
+const PROJECTS: { projectName: ProjectDirs[number], test: string }[] = [
   { projectName: 'angular-19', test: 'app.component' },
   { projectName: 'react-vite-ts-configured', test: 'App.cy' },
   { projectName: 'react18', test: 'App.cy' },
diff --git a/packages/app/cypress/e2e/runner/runner-ct.justInTimeCompile.cy.ts b/packages/app/cypress/e2e/runner/runner-ct.justInTimeCompile.cy.ts
index 1e003516c0e7..6cab0b46132a 100644
--- a/packages/app/cypress/e2e/runner/runner-ct.justInTimeCompile.cy.ts
+++ b/packages/app/cypress/e2e/runner/runner-ct.justInTimeCompile.cy.ts
@@ -4,7 +4,7 @@ type ProjectDirs = typeof fixtureDirs
 
 const JIT_DIR: ProjectDirs[number] = 'justInTimeCompile'
 
-const PROJECTS: {bundler: 'vite' | 'webpack'}[] = [
+const PROJECTS: { bundler: 'vite' | 'webpack' }[] = [
   // when running for vite, justInTimeCompile=true is set but is a no-op for vite since JIT compiling is not supported in vite
   { bundler: 'vite' },
   { bundler: 'webpack' },
diff --git a/packages/app/cypress/e2e/specs_list_actual_git_repo.cy.ts b/packages/app/cypress/e2e/specs_list_actual_git_repo.cy.ts
index 593db486e42b..7fcc362c59ce 100644
--- a/packages/app/cypress/e2e/specs_list_actual_git_repo.cy.ts
+++ b/packages/app/cypress/e2e/specs_list_actual_git_repo.cy.ts
@@ -54,6 +54,7 @@ describe('Spec List - Last updated with git info', () => {
     .trigger('mouseleave')
 
     cy.withCtx((ctx) => {
+      // eslint-disable-next-line no-restricted-syntax
       ctx.fs.appendFileSync(
         ctx.path.join(ctx.currentProject!, 'cypress', 'e2e', 'dom-container.spec.js'),
         '// modifying the spec.',
@@ -74,6 +75,7 @@ describe('Spec List - Last updated with git info', () => {
     .trigger('mouseleave')
 
     cy.withCtx((ctx) => {
+      // eslint-disable-next-line no-restricted-syntax
       ctx.fs.appendFileSync(
         ctx.path.join(ctx.currentProject!, 'cypress', 'e2e', 'foo.spec.js'),
         '// modifying the spec.',
diff --git a/packages/app/cypress/e2e/specs_list_latest_runs.cy.ts b/packages/app/cypress/e2e/specs_list_latest_runs.cy.ts
index 80923b676e9a..ca7753a40fdf 100644
--- a/packages/app/cypress/e2e/specs_list_latest_runs.cy.ts
+++ b/packages/app/cypress/e2e/specs_list_latest_runs.cy.ts
@@ -5,7 +5,7 @@ function specRowSelector (specFileName: string) {
   return `[data-cy-row="${specFileName}"]`
 }
 
-function dotSelector (specFileName: string, dotNumber: 0 | 1 | 2 |'latest') {
+function dotSelector (specFileName: string, dotNumber: 0 | 1 | 2 | 'latest') {
   return `${specRowSelector(specFileName)} [data-cy="run-status-dot-${dotNumber}"]`
 }
 
@@ -44,10 +44,10 @@ function validateTooltip (status: string) {
   })
 }
 
-function specShouldShow (specFileName: string, runDotsClasses: string[], latestRunStatus: CloudRunStatus|'PLACEHOLDER') {
+function specShouldShow (specFileName: string, runDotsClasses: string[], latestRunStatus: CloudRunStatus | 'PLACEHOLDER') {
   const latestStatusSpinning = latestRunStatus === 'RUNNING'
 
-  type dotIndex = Parameters<typeof dotSelector>[1];
+  type dotIndex = Parameters<typeof dotSelector>[1]
   const indexes: Exclude<dotIndex, 'latest'>[] = [0, 1, 2]
 
   indexes.forEach((i) => {
diff --git a/packages/app/cypress/e2e/specs_list_no_git_repo.cy.ts b/packages/app/cypress/e2e/specs_list_no_git_repo.cy.ts
index 7a9e55c0f682..0107c00b9bc1 100644
--- a/packages/app/cypress/e2e/specs_list_no_git_repo.cy.ts
+++ b/packages/app/cypress/e2e/specs_list_no_git_repo.cy.ts
@@ -13,6 +13,7 @@ describe('Spec List - Last updated with no git info', () => {
     .should('not.exist')
 
     cy.withCtx((ctx) => {
+      // eslint-disable-next-line no-restricted-syntax
       ctx.fs.appendFileSync(
         ctx.path.join(ctx.currentProject!, 'cypress', 'e2e', 'blank-contents.spec.js'),
         '// touching the spec.',
diff --git a/packages/app/cypress/tasks/git.ts b/packages/app/cypress/tasks/git.ts
index 9500c47a6108..b283fceea721 100644
--- a/packages/app/cypress/tasks/git.ts
+++ b/packages/app/cypress/tasks/git.ts
@@ -14,6 +14,7 @@ export async function initGitRepoForTestProject (projectPath: string) {
   }
 
   const e2eFolder = path.join(projectPath, 'cypress', 'e2e')
+  // eslint-disable-next-line no-restricted-syntax
   const allSpecs = fs.readdirSync(e2eFolder)
 
   await git.init()
@@ -25,7 +26,9 @@ export async function initGitRepoForTestProject (projectPath: string) {
   const fooSpec = path.join(e2eFolder, 'foo.spec.js')
   const blankContentsSpec = path.join(e2eFolder, 'blank-contents.spec.js')
 
+  // eslint-disable-next-line no-restricted-syntax
   fs.createFileSync(fooSpec)
+  // eslint-disable-next-line no-restricted-syntax
   fs.writeFileSync(blankContentsSpec, 'it(\'modifies the file\', () => {})')
 
   return null
diff --git a/packages/app/cypress/tasks/mochaEvents.ts b/packages/app/cypress/tasks/mochaEvents.ts
index 99d6598e05d4..1da7c0f43c2b 100644
--- a/packages/app/cypress/tasks/mochaEvents.ts
+++ b/packages/app/cypress/tasks/mochaEvents.ts
@@ -6,7 +6,9 @@ const snapshotFile = (filename: string) => path.join(__dirname, '..', 'e2e', 'ru
 export const writeMochaEventSnapshot = ({ filename, snapshots }) => {
   const jsonFile = snapshotFile(filename)
 
+  // eslint-disable-next-line no-restricted-syntax
   fs.ensureFileSync(jsonFile)
+  // eslint-disable-next-line no-restricted-syntax
   fs.writeFileSync(jsonFile, JSON.stringify(snapshots, null, 2))
 
   return null
@@ -19,5 +21,6 @@ export const readMochaEventSnapshot = ({ filename }) => {
     return null
   }
 
+  // eslint-disable-next-line no-restricted-syntax
   return fs.readJsonSync(jsonFile)
 }
diff --git a/packages/app/eslint.config.ts b/packages/app/eslint.config.ts
new file mode 100644
index 000000000000..ac977c2fbfc3
--- /dev/null
+++ b/packages/app/eslint.config.ts
@@ -0,0 +1,22 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+    files: ['**/*.{tsx,jsx,vue,ts,js'],
+    languageOptions: {
+      globals: {
+        ...globals.browser,
+      },
+    },
+  },
+  {
+    files: ['vite.config.mjs'],
+    languageOptions: {
+      globals: {
+        ...globals.node,
+      },
+    },
+  },
+]
diff --git a/packages/app/package.json b/packages/app/package.json
index bc84d3851d03..884ab7fbdca0 100644
--- a/packages/app/package.json
+++ b/packages/app/package.json
@@ -14,7 +14,7 @@
     "cypress:run:e2e": "yarn cypress:run-cypress-in-cypress node ../../scripts/cypress run --project .",
     "cypress:run:e2e:update:snapshots": "CYPRESS_SNAPSHOT_UPDATE=1 yarn cypress:run-cypress-in-cypress node ../../scripts/cypress run --project . --spec **/*mochaEvents* --browser chrome",
     "dev": "yarn cypress:run-cypress-in-cypress gulp dev --project .",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "start": "echo \"run 'yarn dev' or 'yarn watch' from the root\" && exit 1",
     "test": "echo 'ok'",
     "watch": "echo \"run 'yarn dev' or 'yarn watch' from the root\" && exit 1"
diff --git a/packages/app/src/components/FileMatch.cy.tsx b/packages/app/src/components/FileMatch.cy.tsx
index fc9cd872d48e..81d5b1f84f52 100644
--- a/packages/app/src/components/FileMatch.cy.tsx
+++ b/packages/app/src/components/FileMatch.cy.tsx
@@ -155,7 +155,7 @@ describe('<FileMatch />', { viewportWidth: 600, viewportHeight: 300 }, () => {
     /*----------  Fixtures  ----------*/
     // Matches
     const total = 10
-    const matchesData: Record<string, [{ matches: {found: number, total: number}, pattern?: string, extensionPattern?: string }, string]> = {
+    const matchesData: Record<string, [{ matches: { found: number, total: number }, pattern?: string, extensionPattern?: string }, string]> = {
       all: [
         { matches: { found: 10, total } },
         '10 matches',
diff --git a/packages/app/src/composables/useTestingType.cy.tsx b/packages/app/src/composables/useTestingType.cy.tsx
index 289e4cc2b169..caff193f6bd0 100644
--- a/packages/app/src/composables/useTestingType.cy.tsx
+++ b/packages/app/src/composables/useTestingType.cy.tsx
@@ -5,7 +5,7 @@ import type { FunctionalComponent } from 'vue'
 describe('useTestingType', () => {
   type ComposableWrapperProps<R> = { useComposable: () => R, callback: (result: R) => void }
 
-  const ComposableWrapper: FunctionalComponent<ComposableWrapperProps<unknown>> = <R, >({ useComposable, callback }: ComposableWrapperProps<R>) => {
+  const ComposableWrapper: FunctionalComponent<ComposableWrapperProps<unknown>> = <R = unknown>({ useComposable, callback }: ComposableWrapperProps<R>) => {
     const result = useComposable()
 
     callback(result)
diff --git a/packages/app/src/debug/DebugArtifactLink.cy.tsx b/packages/app/src/debug/DebugArtifactLink.cy.tsx
index c6f3732fead0..a9c74eac428b 100644
--- a/packages/app/src/debug/DebugArtifactLink.cy.tsx
+++ b/packages/app/src/debug/DebugArtifactLink.cy.tsx
@@ -2,7 +2,7 @@ import DebugArtifactLink from './DebugArtifactLink.vue'
 import type { ArtifactType } from './utils/debugArtifacts'
 
 describe('<DebugArtifacts />', () => {
-  const artifactMapping: {icon: ArtifactType, text: string, url: string}[] = [
+  const artifactMapping: { icon: ArtifactType, text: string, url: string }[] = [
     { icon: 'TERMINAL_LOG', text: 'View Log', url: 'www.cypress.io' },
     { icon: 'IMAGE_SCREENSHOT', text: 'View Screenshot', url: 'cloud.cypress.io' },
     { icon: 'PLAY', text: 'View Video', url: 'www.cypress.io' },
diff --git a/packages/app/src/debug/DebugRunNavigation.vue b/packages/app/src/debug/DebugRunNavigation.vue
index 7bd9be4e92d2..c18fd07ddef1 100644
--- a/packages/app/src/debug/DebugRunNavigation.vue
+++ b/packages/app/src/debug/DebugRunNavigation.vue
@@ -237,7 +237,7 @@ const groupByCommit = computed(() => {
     mapped[props.currentCommitInfo.sha] = props.currentCommitInfo
   }
 
-  const result = Object.keys(grouped).reduce<Record<string, {sha: string, message: string | undefined | null, runs: typeof props.runs}>>((acc, curr) => {
+  const result = Object.keys(grouped).reduce<Record<string, { sha: string, message: string | undefined | null, runs: typeof props.runs }>>((acc, curr) => {
     acc[curr] = {
       sha: curr,
       message: grouped[curr][0].commitInfo?.summary,
diff --git a/packages/app/src/debug/DebugSpec.cy.tsx b/packages/app/src/debug/DebugSpec.cy.tsx
index 0520035be8db..3b47a67beaa3 100644
--- a/packages/app/src/debug/DebugSpec.cy.tsx
+++ b/packages/app/src/debug/DebugSpec.cy.tsx
@@ -8,7 +8,7 @@ const resultCounts = (min: number, max: number) => {
   }
 }
 
-const multipleGroups: {[groupId: string]: any} = {
+const multipleGroups: { [groupId: string]: any } = {
   '123': {
     os: {
       name: 'Linux',
@@ -35,7 +35,7 @@ const multipleGroups: {[groupId: string]: any} = {
   },
 }
 
-const singleGroup: {[groupId: string]: any} = {
+const singleGroup: { [groupId: string]: any } = {
   '123': {
     os: {
       name: 'Linux',
@@ -50,7 +50,7 @@ const singleGroup: {[groupId: string]: any} = {
   },
 }
 
-const testResultMultipleGroups: {[thumbprint: string]: TestResults[]} = {
+const testResultMultipleGroups: { [thumbprint: string]: TestResults[] } = {
   'abcd': [
     {
       id: '676df87878',
@@ -123,7 +123,7 @@ const testResultMultipleGroups: {[thumbprint: string]: TestResults[]} = {
   ],
 }
 
-const testResultSingleGroup: {[thumbprint: string]: TestResults[]} = {
+const testResultSingleGroup: { [thumbprint: string]: TestResults[] } = {
   'abcd': [
     {
       id: '676df87878',
@@ -270,7 +270,7 @@ describe('<DebugSpec/> responsive UI', () => {
       },
     }
 
-    const testResult: {[thumbprint: string]: TestResults[]} = {
+    const testResult: { [thumbprint: string]: TestResults[] } = {
       'abcd': [
         {
           id: '676df87878',
@@ -378,7 +378,7 @@ describe('testing groupings', () => {
       },
     }
 
-    const repeatedValueGroups: {[groupId: string]: any} = {
+    const repeatedValueGroups: { [groupId: string]: any } = {
       '456': {
         os: {
           name: 'Apple',
@@ -405,7 +405,7 @@ describe('testing groupings', () => {
       },
     }
 
-    const tests: {[thumbprint: string]: TestResults[]} = {
+    const tests: { [thumbprint: string]: TestResults[] } = {
       'abcd': [
         {
           id: '676df87878',
diff --git a/packages/app/src/debug/DebugSpec.vue b/packages/app/src/debug/DebugSpec.vue
index 61aa90af937a..df0ba94ce398 100644
--- a/packages/app/src/debug/DebugSpec.vue
+++ b/packages/app/src/debug/DebugSpec.vue
@@ -256,8 +256,8 @@ const { t } = useI18n()
 
 const props = defineProps<{
   spec: Spec
-  testResults: {[thumbprint: string]: TestResults[]}
-  groups: {[groupId: string]: StatsMetadata_GroupsFragment }
+  testResults: { [thumbprint: string]: TestResults[] }
+  groups: { [groupId: string]: StatsMetadata_GroupsFragment }
   testingType: TestingTypeEnum
   foundLocally: boolean
   matchesCurrentTestingType: boolean
diff --git a/packages/app/src/debug/GroupedDebugFailedTest.vue b/packages/app/src/debug/GroupedDebugFailedTest.vue
index c19df850a6a2..97fbbd4562b1 100644
--- a/packages/app/src/debug/GroupedDebugFailedTest.vue
+++ b/packages/app/src/debug/GroupedDebugFailedTest.vue
@@ -53,7 +53,7 @@ const props = defineProps<{
 const { t } = useI18n()
 
 const debugArtifacts = computed(() => {
-  return props.failedTests.reduce<{[groupID: string]: DebugArtifact[] }>((acc, curr) => {
+  return props.failedTests.reduce<{ [groupID: string]: DebugArtifact[] }>((acc, curr) => {
     acc[curr.instance?.groupId ?? ''] = getDebugArtifacts(curr.instance, t)
 
     return acc
diff --git a/packages/app/src/debug/StatsMetadata.vue b/packages/app/src/debug/StatsMetadata.vue
index c61edb1db0be..6903db67c738 100644
--- a/packages/app/src/debug/StatsMetadata.vue
+++ b/packages/app/src/debug/StatsMetadata.vue
@@ -127,7 +127,7 @@ const results = computed(() => {
 })
 
 const arrMapping = computed(() => {
-  const acc: {browsers: string[], oses: string[], firstBrowser: string, firstOs: string} = { browsers: [], oses: [], firstBrowser: '', firstOs: '' }
+  const acc: { browsers: string[], oses: string[], firstBrowser: string, firstOs: string } = { browsers: [], oses: [], firstBrowser: '', firstOs: '' }
   const uniqueBrowsers = new Set<string>()
   const uniqueOSes = new Set<string>()
 
diff --git a/packages/app/src/debug/utils/DebugMapping.ts b/packages/app/src/debug/utils/DebugMapping.ts
index cbd8627dd6f9..996ffd7121cb 100644
--- a/packages/app/src/debug/utils/DebugMapping.ts
+++ b/packages/app/src/debug/utils/DebugMapping.ts
@@ -20,9 +20,9 @@ export type CloudDebugSpec = {
 
 export const specsList = ({ specs, tests, localSpecs, currentTestingType, groups }: DebugSpecsArgs): CloudDebugSpec[] => {
   const localSpecsSet = new Set(localSpecs.map(((spec) => posixify(spec.relative))))
-  const groupsMap = groups.reduce<{[id: string]: DebugSpecListGroupsFragment}>((acc, group) => ({ ...acc, [group.id]: group }), {})
+  const groupsMap = groups.reduce<{ [id: string]: DebugSpecListGroupsFragment }>((acc, group) => ({ ...acc, [group.id]: group }), {})
 
-  const mappedTests = tests.reduce<{[id: string]: CloudDebugSpec}>((acc, curr) => {
+  const mappedTests = tests.reduce<{ [id: string]: CloudDebugSpec }>((acc, curr) => {
     let debugResult = acc[curr.specId]
 
     if (!debugResult) {
@@ -34,7 +34,7 @@ export const specsList = ({ specs, tests, localSpecs, currentTestingType, groups
         throw new Error(`Could not find spec for id ${ curr.specId}`)
       }
 
-      const groupsMapping = (foundSpec.groupIds || []).reduce<{[grpId: string]: DebugSpecListGroupsFragment}>((acc, id) => {
+      const groupsMapping = (foundSpec.groupIds || []).reduce<{ [grpId: string]: DebugSpecListGroupsFragment }>((acc, id) => {
         if (id) {
           acc[id] = groupsMap[id]
         }
diff --git a/packages/app/src/navigation/SidebarNavigation.cy.tsx b/packages/app/src/navigation/SidebarNavigation.cy.tsx
index b72051c03077..46618f80dca8 100644
--- a/packages/app/src/navigation/SidebarNavigation.cy.tsx
+++ b/packages/app/src/navigation/SidebarNavigation.cy.tsx
@@ -5,7 +5,7 @@ import { CloudRunStubs } from '@packages/graphql/test/stubCloudTypes'
 import { cloneDeep } from 'lodash'
 import { useUserProjectStatusStore } from '@packages/frontend-shared/src/store/user-project-status-store'
 
-function mountComponent (props: { initialNavExpandedVal?: boolean, cloudProject?: { status: CloudRunStatus, numFailedTests: number }, latestCloudProject?: { status: CloudRunStatus, numFailedTests: number }, isLoading?: boolean, online?: boolean} = {}) {
+function mountComponent (props: { initialNavExpandedVal?: boolean, cloudProject?: { status: CloudRunStatus, numFailedTests: number }, latestCloudProject?: { status: CloudRunStatus, numFailedTests: number }, isLoading?: boolean, online?: boolean } = {}) {
   const withDefaults = { initialNavExpandedVal: false, isLoading: false, online: true, ...props }
   let _gql: SidebarNavigationFragment
 
diff --git a/packages/app/src/pages/Debug.vue b/packages/app/src/pages/Debug.vue
index 960792e4c63d..d09971152ecf 100644
--- a/packages/app/src/pages/Debug.vue
+++ b/packages/app/src/pages/Debug.vue
@@ -36,7 +36,7 @@ subscription Debug_specsChange {
 }
 `
 
-gql `
+gql`
 query Debug($runNumber: Int!, $commitShas: [String!]!) {
   ...DebugSpecs
 }
diff --git a/packages/app/src/paths.ts b/packages/app/src/paths.ts
index 1c889ca8fbf1..39010723e441 100644
--- a/packages/app/src/paths.ts
+++ b/packages/app/src/paths.ts
@@ -1,9 +1,8 @@
-/* eslint-disable no-redeclare */
 import { decodeBase64Unicode } from '@packages/frontend-shared/src/utils/base64'
 
-export function getPathForPlatform(): null
+export function getPathForPlatform (): null
 
-export function getPathForPlatform(posixPath: string): string
+export function getPathForPlatform (posixPath: string): string
 
 export function getPathForPlatform (posixPath?: string) {
   if (!posixPath) {
diff --git a/packages/app/src/runner/ResizablePanels.vue b/packages/app/src/runner/ResizablePanels.vue
index 288adccfe92c..f546c11de47d 100644
--- a/packages/app/src/runner/ResizablePanels.vue
+++ b/packages/app/src/runner/ResizablePanels.vue
@@ -93,7 +93,7 @@ const props = withDefaults(defineProps<{
 
 const emit = defineEmits<{
   (e: 'resizeEnd', value: DraggablePanel): void
-  (e: 'panelWidthUpdated', value: {panel: DraggablePanel, width: number}): void
+  (e: 'panelWidthUpdated', value: { panel: DraggablePanel, width: number }): void
 }>()
 
 const panel1HandleX = ref(props.initialPanel1Width)
diff --git a/packages/app/src/runner/aut-iframe.ts b/packages/app/src/runner/aut-iframe.ts
index c73aff2da0a3..e52debb2cbb9 100644
--- a/packages/app/src/runner/aut-iframe.ts
+++ b/packages/app/src/runner/aut-iframe.ts
@@ -2,7 +2,7 @@ import { useSelectorPlaygroundStore } from '../store/selector-playground-store'
 import { blankContents } from '../components/Blank'
 import { logger } from './logger'
 import _ from 'lodash'
-/* eslint-disable no-duplicate-imports */
+
 import type { DebouncedFunc } from 'lodash'
 import { useStudioStore } from '../store/studio-store'
 import { getElementDimensions, setOffset } from './dimensions'
diff --git a/packages/app/src/runner/event-manager.ts b/packages/app/src/runner/event-manager.ts
index ea8585fef3ad..15badc89466d 100644
--- a/packages/app/src/runner/event-manager.ts
+++ b/packages/app/src/runner/event-manager.ts
@@ -1,4 +1,3 @@
-/* eslint-disable no-dupe-class-members */
 import Bluebird from 'bluebird'
 import { EventEmitter } from 'events'
 import type { MobxRunnerStore } from '@packages/app/src/store/mobx-runner-store'
@@ -32,7 +31,7 @@ let crossOriginOnMessageRef = ({ data, source }: MessageEvent<{
 }>) => {
   return undefined
 }
-let crossOriginLogs: {[key: string]: Cypress.Log} = {}
+let crossOriginLogs: { [key: string]: Cypress.Log } = {}
 let hasMochaRunEnded: boolean = false
 
 interface AddGlobalListenerOptions {
diff --git a/packages/app/src/runner/events/capture-protocol.ts b/packages/app/src/runner/events/capture-protocol.ts
index 3559cf291c38..80bf35dc461e 100644
--- a/packages/app/src/runner/events/capture-protocol.ts
+++ b/packages/app/src/runner/events/capture-protocol.ts
@@ -1,5 +1,5 @@
 type ProtocolInfo = {
-  type: 'cy:protocol-snapshot' | 'log:added' | 'log:changed' | 'page:loading'| 'test:before:run:async' | 'test:before:after:run:async' | 'test:after:run:async' | 'url:changed' | 'viewport:changed'
+  type: 'cy:protocol-snapshot' | 'log:added' | 'log:changed' | 'page:loading' | 'test:before:run:async' | 'test:before:after:run:async' | 'test:after:run:async' | 'url:changed' | 'viewport:changed'
   timestamp: DOMHighResTimeStamp
 }
 
diff --git a/packages/app/src/runner/studio/AssertionsMenu.ce.vue b/packages/app/src/runner/studio/AssertionsMenu.ce.vue
index 6ce79f6b9602..e7fc86e74c1e 100644
--- a/packages/app/src/runner/studio/AssertionsMenu.ce.vue
+++ b/packages/app/src/runner/studio/AssertionsMenu.ce.vue
@@ -52,6 +52,7 @@ import { nextTick, onMounted, Ref, ref, StyleValue } from 'vue'
 import type { PossibleAssertions, AddAssertion, AssertionArgs } from './types'
 
 const props = defineProps <{
+  // eslint-disable-next-line no-undef
   jqueryElement: JQuery<HTMLElement>
   possibleAssertions: PossibleAssertions
   addAssertion: AddAssertion
diff --git a/packages/app/src/runs/RunCard.vue b/packages/app/src/runs/RunCard.vue
index 1dac4f95d8a6..6e1007d4ebd3 100644
--- a/packages/app/src/runs/RunCard.vue
+++ b/packages/app/src/runs/RunCard.vue
@@ -162,9 +162,9 @@ const { t } = useI18n()
 
 gql`
 fragment RunCard on CloudRun {
-	id
-	createdAt
-	status
+  id
+  createdAt
+  status
   totalDuration
   url
   runNumber
@@ -172,14 +172,14 @@ fragment RunCard on CloudRun {
     id
     name
   }
-	...RunResults
-	commitInfo {
-		authorName
-		authorEmail
-		summary
-		branch
-		sha
-	}
+  ...RunResults
+  commitInfo {
+    authorName
+    authorEmail
+    summary
+    branch
+    sha
+  }
 }
 `
 
diff --git a/packages/app/src/runs/RunsLayout.vue b/packages/app/src/runs/RunsLayout.vue
index f944d4419690..3fe63d7ba334 100644
--- a/packages/app/src/runs/RunsLayout.vue
+++ b/packages/app/src/runs/RunsLayout.vue
@@ -141,7 +141,7 @@ const groupByCommit = computed(() => {
     mapped[props.currentCommitInfo.sha] = props.currentCommitInfo
   }
 
-  const result = Object.keys(grouped).reduce<Record<string, {sha: string, message: string | undefined | null, runs: typeof props.runs}>>((acc, curr) => {
+  const result = Object.keys(grouped).reduce<Record<string, { sha: string, message: string | undefined | null, runs: typeof props.runs }>>((acc, curr) => {
     acc[curr] = {
       sha: curr,
       message: grouped[curr][0].commitInfo?.summary,
diff --git a/packages/app/src/runs/useGitTreeRuns.ts b/packages/app/src/runs/useGitTreeRuns.ts
index 5a4eb6ff919f..430afcfadff8 100644
--- a/packages/app/src/runs/useGitTreeRuns.ts
+++ b/packages/app/src/runs/useGitTreeRuns.ts
@@ -10,7 +10,7 @@ gql`
   }
 `
 
-gql `
+gql`
 fragment RunsGitTreeProject on Query {
   ...RunsErrorRenderer
   currentProject {
diff --git a/packages/app/src/settings/project/projectSettings.ts b/packages/app/src/settings/project/projectSettings.ts
index 317d5cc33bc7..8e9b443576b2 100644
--- a/packages/app/src/settings/project/projectSettings.ts
+++ b/packages/app/src/settings/project/projectSettings.ts
@@ -17,6 +17,6 @@ export interface Experiment {
 
 export type CypressResolvedConfig = Array<{
   field: string
-  from: 'default'| 'config' | 'plugin' | 'env'
+  from: 'default' | 'config' | 'plugin' | 'env'
   value: string | number | boolean | Record<string, string> | Array<string>
 }>
diff --git a/packages/app/src/settings/project/renderers/RenderPrimitive.vue b/packages/app/src/settings/project/renderers/RenderPrimitive.vue
index 2bc9a6f89026..852ca834cb70 100644
--- a/packages/app/src/settings/project/renderers/RenderPrimitive.vue
+++ b/packages/app/src/settings/project/renderers/RenderPrimitive.vue
@@ -20,7 +20,7 @@ import Tooltip from '@packages/frontend-shared/src/components/Tooltip.vue'
 import { computed } from 'vue'
 
 const props = defineProps<{
-  value?: string | number| null
+  value?: string | number | null
   from: string
   class?: string
 }>()
diff --git a/packages/app/src/settings/project/renderers/RendererPrimitive.cy.tsx b/packages/app/src/settings/project/renderers/RendererPrimitive.cy.tsx
index c2badda615ec..e0e91427b791 100644
--- a/packages/app/src/settings/project/renderers/RendererPrimitive.cy.tsx
+++ b/packages/app/src/settings/project/renderers/RendererPrimitive.cy.tsx
@@ -1,7 +1,7 @@
 import { CONFIG_LEGEND_COLOR_MAP } from '../ConfigSourceColors'
 import RenderPrimitive from './RenderPrimitive.vue'
 
-function mountWithPrimitive (value: string| number | null, from: string) {
+function mountWithPrimitive (value: string | number | null, from: string) {
   cy.mount(() => {
     return (
       <div class="p-12 overflow-auto">
diff --git a/packages/app/src/specs/HighlightedText.vue b/packages/app/src/specs/HighlightedText.vue
index 020bc67fef4a..9e4809992a24 100644
--- a/packages/app/src/specs/HighlightedText.vue
+++ b/packages/app/src/specs/HighlightedText.vue
@@ -21,7 +21,7 @@
 import { computed } from 'vue'
 
 const props = withDefaults(
-  defineProps<{text: string, indexes: number[], highlightClasses?: string}>(),
+  defineProps<{ text: string, indexes: number[], highlightClasses?: string }>(),
   { text: '', indexes: () => [], highlightClasses: 'text-white' },
 )
 
diff --git a/packages/app/src/specs/InlineSpecList.cy.tsx b/packages/app/src/specs/InlineSpecList.cy.tsx
index 31a0b2731c2d..ac8da6fd3f7c 100644
--- a/packages/app/src/specs/InlineSpecList.cy.tsx
+++ b/packages/app/src/specs/InlineSpecList.cy.tsx
@@ -5,7 +5,7 @@ import { defaultMessages } from '@cy/i18n'
 let specs: Array<any> = []
 
 describe('InlineSpecList', () => {
-  const mountInlineSpecList = ({ specFilter, experimentalRunAllSpecs }: {specFilter?: string, experimentalRunAllSpecs?: boolean} = {}) => cy.mountFragment(Specs_InlineSpecListFragmentDoc, {
+  const mountInlineSpecList = ({ specFilter, experimentalRunAllSpecs }: { specFilter?: string, experimentalRunAllSpecs?: boolean } = {}) => cy.mountFragment(Specs_InlineSpecListFragmentDoc, {
     onResult: (ctx) => {
       if (!ctx.currentProject?.specs) {
         return ctx
diff --git a/packages/app/src/specs/InlineSpecListHeader.cy.tsx b/packages/app/src/specs/InlineSpecListHeader.cy.tsx
index bbaf88550d6a..555768412652 100644
--- a/packages/app/src/specs/InlineSpecListHeader.cy.tsx
+++ b/packages/app/src/specs/InlineSpecListHeader.cy.tsx
@@ -4,7 +4,7 @@ import { defaultMessages } from '@cy/i18n'
 import { defineStore } from 'pinia'
 
 describe('InlineSpecListHeader', () => {
-  const mountWithProps = (props: {resultCount?: number, isRunAllSpecsAllowed?: boolean} = {}) => {
+  const mountWithProps = (props: { resultCount?: number, isRunAllSpecsAllowed?: boolean } = {}) => {
     const specFilterModel = ref('')
 
     const propsWithDefaults = {
diff --git a/packages/app/src/specs/SpecsListRunWatcher.vue b/packages/app/src/specs/SpecsListRunWatcher.vue
index eef02c194e9d..aa99491000e9 100644
--- a/packages/app/src/specs/SpecsListRunWatcher.vue
+++ b/packages/app/src/specs/SpecsListRunWatcher.vue
@@ -26,7 +26,7 @@ subscription SpecsListRunWatcher($id: ID!) {
 `
 
 const props = defineProps<{
-  run: {runId: string, status: CloudRunStatus | null }
+  run: { runId: string, status: CloudRunStatus | null }
 }>()
 
 const emits = defineEmits<{
diff --git a/packages/app/src/specs/generators/ExpandableFileChooser.vue b/packages/app/src/specs/generators/ExpandableFileChooser.vue
index 2618152a5cc5..6c68abc3e7e0 100644
--- a/packages/app/src/specs/generators/ExpandableFileChooser.vue
+++ b/packages/app/src/specs/generators/ExpandableFileChooser.vue
@@ -98,7 +98,6 @@ const emits = defineEmits<{
   (eventName: 'update:extensionPattern', value: string)
 }>()
 
-// eslint-disable-next-line
 const initialExtensionPattern = props.extensionPattern
 const localExtensionPattern = ref(props.extensionPattern)
 const filePathSearch = ref('')
diff --git a/packages/app/src/specs/generators/ExpandableFileList.vue b/packages/app/src/specs/generators/ExpandableFileList.vue
index afec6a6f5c67..152be57ad4e2 100644
--- a/packages/app/src/specs/generators/ExpandableFileList.vue
+++ b/packages/app/src/specs/generators/ExpandableFileList.vue
@@ -70,7 +70,7 @@ defineProps<{
 }>()
 
 defineEmits<{
-  (eventName: 'selectItem', value: {file: FileListItemFragment, item: any})
+  (eventName: 'selectItem', value: { file: FileListItemFragment, item: any })
 }>()
 
 // [...all].vue returns as [ when using the normal fileName
diff --git a/packages/app/src/specs/generators/FileChooser.vue b/packages/app/src/specs/generators/FileChooser.vue
index 796527ade2cf..1ff279623fc1 100644
--- a/packages/app/src/specs/generators/FileChooser.vue
+++ b/packages/app/src/specs/generators/FileChooser.vue
@@ -99,7 +99,6 @@ const emits = defineEmits<{
   (eventName: 'update:extensionPattern', value: string)
 }>()
 
-// eslint-disable-next-line
 const initialExtensionPattern = props.extensionPattern
 const localExtensionPattern = ref(props.extensionPattern)
 const filePathSearch = ref('')
diff --git a/packages/app/src/specs/spec-utils.ts b/packages/app/src/specs/spec-utils.ts
index 8ead50a2c436..e9f7fc8cf2cd 100644
--- a/packages/app/src/specs/spec-utils.ts
+++ b/packages/app/src/specs/spec-utils.ts
@@ -4,7 +4,7 @@ import { ComputedRef, Ref, ref, watch } from 'vue'
 import _ from 'lodash'
 import { FuzzyFoundSpec, getPlatform } from './tree/useCollapsibleTree'
 
-export function fuzzySortSpecs <T extends FuzzyFoundSpec> (specs: T[], searchValue: string) {
+export function fuzzySortSpecs<T extends FuzzyFoundSpec> (specs: T[], searchValue: string) {
   const normalizedSearchValue = normalizeSpecValue(searchValue)
 
   const fuzzySortResult = fuzzySort
diff --git a/packages/app/src/specs/tree/useCollapsibleTree.ts b/packages/app/src/specs/tree/useCollapsibleTree.ts
index 7770c70164ad..ab67a7c3876c 100644
--- a/packages/app/src/specs/tree/useCollapsibleTree.ts
+++ b/packages/app/src/specs/tree/useCollapsibleTree.ts
@@ -4,7 +4,7 @@ import { useToggle } from '@vueuse/core'
 import type { FoundSpec } from '@packages/types/src'
 import { getRunnerConfigFromWindow } from '../../runner/get-runner-config-from-window'
 
-export type RawNode <T> = {
+export type RawNode<T> = {
   id: string
   name: string
   children: RawNode<T>[]
@@ -62,7 +62,7 @@ export function buildSpecTree<T extends FoundSpec> (specs: FoundSpec[], root: Sp
 //   - components
 //     - index.ts
 // tree (given that src/comp is not collapsed)
-function getHighlightIndexes <T extends FoundSpec> (node: SpecTreeNode<T>) {
+function getHighlightIndexes<T extends FoundSpec> (node: SpecTreeNode<T>) {
   if (!(node.data as any)?.fuzzyIndexes) {
     return []
   }
@@ -135,7 +135,7 @@ function collapseEmptyChildren<T extends FoundSpec> (node: SpecTreeNode<T>) {
   return
 }
 
-export type UseCollapsibleTreeNode <T extends RawNode<T>> = {
+export type UseCollapsibleTreeNode<T extends RawNode<T>> = {
   // control open/close state
   hidden: ComputedRef<boolean>
   expanded: Ref<boolean>
@@ -146,7 +146,7 @@ export type UseCollapsibleTreeNode <T extends RawNode<T>> = {
 
   parent?: UseCollapsibleTreeNode<T>
   children: UseCollapsibleTreeNode<T>[]
-} & { [K in keyof T]: T[K]}
+} & { [K in keyof T]: T[K] }
 
 export interface UseCollapsibleTreeOptions {
   expandInitially?: boolean
@@ -246,7 +246,7 @@ function sortTree<T extends RawNode<T>> (tree: T) {
   }
 }
 
-export function useCollapsibleTree <T extends RawNode<T>> (tree: T, options: UseCollapsibleTreeOptions = {}) {
+export function useCollapsibleTree<T extends RawNode<T>> (tree: T, options: UseCollapsibleTreeOptions = {}) {
   options.expandInitially = options.expandInitially ?? true
   sortTree(tree)
   const collapsibleTree = buildTree<T>(tree, options)
diff --git a/packages/app/src/specs/tree/useVirtualListNavigation.ts b/packages/app/src/specs/tree/useVirtualListNavigation.ts
index 1b514c69aadd..ae82412e2249 100644
--- a/packages/app/src/specs/tree/useVirtualListNavigation.ts
+++ b/packages/app/src/specs/tree/useVirtualListNavigation.ts
@@ -19,7 +19,7 @@ export function useVirtualListNavigation ({
   scrollTo,
 }: UseVirtualListApi) {
   const activeItem = ref<number | null>(null)
-  const itemRefs = ref<{[key: number]: any}>({})
+  const itemRefs = ref<{ [key: number]: any }>({})
   const setItemRef = (el, index: number) => {
     if (el) {
       itemRefs.value[index] = el

From 6434772f94da2a854c00775b882e7cb0f5b90907 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 09:16:05 -0500
Subject: [PATCH 037/127] remove conflicting old eslintrc from app

---
 packages/app/.eslintignore  | 7 -------
 packages/app/.eslintrc.json | 3 ---
 2 files changed, 10 deletions(-)
 delete mode 100644 packages/app/.eslintignore
 delete mode 100644 packages/app/.eslintrc.json

diff --git a/packages/app/.eslintignore b/packages/app/.eslintignore
deleted file mode 100644
index 0a4f19fad609..000000000000
--- a/packages/app/.eslintignore
+++ /dev/null
@@ -1,7 +0,0 @@
-**/dist
-**/dist-*
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
-/src/store/mobx-runner-store.ts
\ No newline at end of file
diff --git a/packages/app/.eslintrc.json b/packages/app/.eslintrc.json
deleted file mode 100644
index 6eeb52459992..000000000000
--- a/packages/app/.eslintrc.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
-  "extends": "../frontend-shared/.eslintrc.json"
-}

From eed56c06f447f26a9e1434ff75810ba2d0d0a121 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 09:20:32 -0500
Subject: [PATCH 038/127] lint fix for packages/config

---
 packages/config/.eslintignore                  |  8 --------
 packages/config/eslint.config.ts               | 18 ++++++++++++++++++
 .../config/src/ast-utils/addToCypressConfig.ts |  2 +-
 packages/config/src/validation.ts              |  8 ++++----
 .../config/test/__fixtures__/has-e2e.config.ts |  4 ++--
 .../config/test/__fixtures__/invalid.config.ts |  2 +-
 packages/config/test/validation.spec.ts        |  2 +-
 7 files changed, 27 insertions(+), 17 deletions(-)
 delete mode 100644 packages/config/.eslintignore
 create mode 100644 packages/config/eslint.config.ts

diff --git a/packages/config/.eslintignore b/packages/config/.eslintignore
deleted file mode 100644
index d9c909f1aed8..000000000000
--- a/packages/config/.eslintignore
+++ /dev/null
@@ -1,8 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
-/test/__fixtures__/**/*
-/test/__babel_fixtures__/**/*
-**/__snapshots__
\ No newline at end of file
diff --git a/packages/config/eslint.config.ts b/packages/config/eslint.config.ts
new file mode 100644
index 000000000000..6a27c6713787
--- /dev/null
+++ b/packages/config/eslint.config.ts
@@ -0,0 +1,18 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['**/__babel_fixtures__/**/*'],
+  },
+  {
+    languageOptions: {
+      globals: {
+        exports: 'readonly',
+        process: 'readonly',
+        __dirname: 'readonly',
+      },
+    },
+  },
+]
diff --git a/packages/config/src/ast-utils/addToCypressConfig.ts b/packages/config/src/ast-utils/addToCypressConfig.ts
index 5c5a7896b4cc..c70a846efb31 100644
--- a/packages/config/src/ast-utils/addToCypressConfig.ts
+++ b/packages/config/src/ast-utils/addToCypressConfig.ts
@@ -155,7 +155,7 @@ type OutputExtension = '.ts' | '.mjs' | '.js'
 
 // Necessary to handle the edge case of them deleting the contents of their Cypress
 // config file, just before we merge in the testing type
-function getEmptyCodeBlock ({ outputType, isProjectUsingESModules, projectRoot }: { outputType: OutputExtension, isProjectUsingESModules: boolean, projectRoot: string}) {
+function getEmptyCodeBlock ({ outputType, isProjectUsingESModules, projectRoot }: { outputType: OutputExtension, isProjectUsingESModules: boolean, projectRoot: string }) {
   if (defineConfigAvailable(projectRoot)) {
     if (outputType === '.ts' || outputType === '.mjs' || isProjectUsingESModules) {
       return dedent`
diff --git a/packages/config/src/validation.ts b/packages/config/src/validation.ts
index 8143038e5b7c..51c1de1f2032 100644
--- a/packages/config/src/validation.ts
+++ b/packages/config/src/validation.ts
@@ -40,7 +40,7 @@ const isFalse = (value: any): boolean => {
   return value === false
 }
 
-type ValidationResult = ErrResult | boolean | string;
+type ValidationResult = ErrResult | boolean | string
 type ValidationFn = (key: string, value: any) => ValidationResult
 
 export const validateAny = (...validations: ValidationFn[]): ValidationFn => {
@@ -107,7 +107,7 @@ export const isValidBrowserList = (_key: string, browsers: any): ErrResult | tru
   }
 
   for (let k = 0; k < browsers.length; k += 1) {
-    const validationResult: boolean | {key: string, value: string, type: string, list?: string} = isValidBrowser(browsers[k])
+    const validationResult: boolean | { key: string, value: string, type: string, list?: string } = isValidBrowser(browsers[k])
 
     if (validationResult !== true) {
       validationResult.list = 'browsers'
@@ -168,7 +168,7 @@ const isValidExperimentalRetryOptionsConfig = (key: string, value: any, strategy
   return true
 }
 
-const isValidRetryValue = (key: string, value: any, minimumValue: 0|1): ErrResult | true => {
+const isValidRetryValue = (key: string, value: any, minimumValue: 0 | 1): ErrResult | true => {
   if (_.isNull(value)) return true
 
   if (Number.isInteger(value) && value >= minimumValue) return true
@@ -330,7 +330,7 @@ export const isValidClientCertificatesSet = (_key: string, certsForUrls: Array<{
     key: string
     cert: string
     pfx: string
-  }>}>): ErrResult | true | string => {
+  }> }>): ErrResult | true | string => {
   debug('clientCerts: %o', certsForUrls)
 
   if (!Array.isArray(certsForUrls)) {
diff --git a/packages/config/test/__fixtures__/has-e2e.config.ts b/packages/config/test/__fixtures__/has-e2e.config.ts
index 5ab096df40a2..2fc45a20fc41 100644
--- a/packages/config/test/__fixtures__/has-e2e.config.ts
+++ b/packages/config/test/__fixtures__/has-e2e.config.ts
@@ -1,3 +1,3 @@
 export default {
-  e2e: {}
-}
\ No newline at end of file
+  e2e: {},
+}
diff --git a/packages/config/test/__fixtures__/invalid.config.ts b/packages/config/test/__fixtures__/invalid.config.ts
index 5d42783117b5..0eb88e62b23f 100644
--- a/packages/config/test/__fixtures__/invalid.config.ts
+++ b/packages/config/test/__fixtures__/invalid.config.ts
@@ -1 +1 @@
-const x = {}
\ No newline at end of file
+const x = {}
diff --git a/packages/config/test/validation.spec.ts b/packages/config/test/validation.spec.ts
index a698dbef73af..dc4516cda579 100644
--- a/packages/config/test/validation.spec.ts
+++ b/packages/config/test/validation.spec.ts
@@ -117,7 +117,7 @@ describe('config/src/validation', () => {
 
       // data-driven testing - computers snapshot value for each item in the list passed through the function
       // https://github.com/bahmutov/snap-shot-it#data-driven-testing
-      return snapshot.apply(null, [validation.isValidBrowser].concat(browsers as any))
+      return snapshot.apply(null, [validation.isValidBrowser, ...browsers])
     })
   })
 

From d035fa9f801a8303cd8c4e6840b50b3e2c30382e Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 09:20:47 -0500
Subject: [PATCH 039/127] redundant rules in puppeteer

---
 npm/puppeteer/eslint.config.ts | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/npm/puppeteer/eslint.config.ts b/npm/puppeteer/eslint.config.ts
index be64517873b9..9b2c6c680b93 100644
--- a/npm/puppeteer/eslint.config.ts
+++ b/npm/puppeteer/eslint.config.ts
@@ -1,10 +1,7 @@
 import { baseConfig } from '../../eslint.config'
-import globals from 'globals'
+
 export default [
   ...baseConfig,
-  {
-    ignores: ['**/dist'],
-  },
   {
     languageOptions: {
       globals: {

From 8ba5ccb9c69775946b9baf5de996cf64b1cc5ca0 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 09:32:14 -0500
Subject: [PATCH 040/127] eslint for packages/data-context

---
 eslint.config.ts                              | 47 ++++++++++++++++++-
 packages/data-context/.eslintignore           |  9 ----
 packages/data-context/eslint.config.ts        | 13 +++++
 .../src/actions/CodegenActions.ts             |  2 +-
 .../src/actions/DataEmitterActions.ts         |  4 +-
 .../src/actions/MigrationActions.ts           |  1 -
 .../src/actions/ProjectActions.ts             |  4 +-
 .../data-context/src/data/LegacyPluginsIpc.ts | 11 ++---
 .../data-context/src/data/ProjectConfigIpc.ts | 31 ++++++------
 packages/data-context/src/globalPubSub.ts     | 13 +++--
 packages/data-context/src/polling/index.ts    |  1 -
 packages/data-context/src/polling/poller.ts   |  2 +-
 .../src/sources/BrowserDataSource.ts          |  2 +-
 .../src/sources/CloudDataSource.ts            |  5 +-
 .../src/sources/ProjectDataSource.ts          |  2 +-
 .../src/sources/RelevantRunsDataSource.ts     |  2 +-
 .../src/sources/RemoteRequestDataSource.ts    |  8 ++--
 .../src/sources/VersionsDataSource.ts         |  2 +-
 .../src/sources/migration/legacyOptions.ts    |  2 +-
 .../src/util/DocumentNodeBuilder.ts           |  2 +-
 .../data-context/src/util/autoBindDebug.ts    |  2 +-
 packages/data-context/src/util/cached.ts      |  1 -
 .../src/util/config-file-updater.ts           |  4 +-
 packages/data-context/src/util/testCounts.ts  |  2 +-
 .../data-context/test/fixtures/browsers.ts    |  6 +--
 .../unit/actions/DataEmitterActions.spec.ts   |  4 --
 .../test/unit/codegen/files/react/Button.jsx  | 21 +++++----
 .../test/unit/codegen/files/vue/Button.vue    | 30 +++++++-----
 .../test/unit/polling/poller.spec.ts          |  2 +-
 29 files changed, 141 insertions(+), 94 deletions(-)
 delete mode 100644 packages/data-context/.eslintignore
 create mode 100644 packages/data-context/eslint.config.ts

diff --git a/eslint.config.ts b/eslint.config.ts
index d2c0c0d87d62..7061ff87e769 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -71,7 +71,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
     rules: {
       'no-console': 'error',
       'no-restricted-properties': [
-        'error',
+        'warn',
         {
           object: 'process',
           property: 'geteuid',
@@ -85,7 +85,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       ],
       'no-restricted-syntax': [
         // esquery tool: https://estools.github.io/esquery/
-        'error',
+        'warn',
         {
           // match sync FS methods except for `existsSync`
           // examples: fse.readFileSync, fs.readFileSync, this.ctx.fs.readFileSync...
@@ -93,6 +93,47 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
           message: 'Synchronous fs calls should not be used in Cypress. Use an async API instead.',
         },
       ],
+      'padding-line-between-statements': [
+        'error',
+        {
+          'blankLine': 'always',
+          'prev': '*',
+          'next': 'return',
+        },
+        {
+          'blankLine': 'always',
+          'prev': [
+            'const',
+            'let',
+            'var',
+            'if',
+            'while',
+            'export',
+            'cjs-export',
+            'import',
+            'cjs-import',
+            'multiline-expression',
+          ],
+          'next': '*',
+        },
+        {
+          'blankLine': 'any',
+          'prev': [
+            'const',
+            'let',
+            'var',
+            'import',
+            'cjs-import',
+          ],
+          'next': [
+            'const',
+            'let',
+            'var',
+            'import',
+            'cjs-import',
+          ],
+        },
+      ],
     },
   },
 
@@ -120,6 +161,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       '@typescript-eslint/triple-slash-reference': 'off',
       '@typescript-eslint/no-empty-object-type': 'off',
       '@typescript-eslint/no-wrapper-object-types': 'off',
+      '@typescript-eslint/no-non-null-asserted-optional-chain': 'off',
 
       'vue/multi-word-component-names': 'off',
       'vue/html-closing-bracket-spacing': 'off',
@@ -157,6 +199,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
     ignores: [
       '.releaserc.js',
       'dist/**/*',
+      '**/__snapshots__/*',
     ],
   },
 
diff --git a/packages/data-context/.eslintignore b/packages/data-context/.eslintignore
deleted file mode 100644
index 055ebf00d392..000000000000
--- a/packages/data-context/.eslintignore
+++ /dev/null
@@ -1,9 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
-/test/unit/codegen/files
-/test/unit/codegen/tmp
-/test/fixtures/**
-**/__snapshots__
\ No newline at end of file
diff --git a/packages/data-context/eslint.config.ts b/packages/data-context/eslint.config.ts
new file mode 100644
index 000000000000..c07e0d7b2273
--- /dev/null
+++ b/packages/data-context/eslint.config.ts
@@ -0,0 +1,13 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+    languageOptions: {
+      globals: {
+        ...globals.node,
+      },
+    },
+  },
+]
diff --git a/packages/data-context/src/actions/CodegenActions.ts b/packages/data-context/src/actions/CodegenActions.ts
index d777923df7aa..210db2199da9 100644
--- a/packages/data-context/src/actions/CodegenActions.ts
+++ b/packages/data-context/src/actions/CodegenActions.ts
@@ -15,7 +15,7 @@ export interface ReactComponentDescriptor {
 export class CodegenActions {
   constructor (private ctx: DataContext) {}
 
-  async getReactComponentsFromFile (filePath: string, reactDocgen?: typeof import('react-docgen')): Promise<{components: ReactComponentDescriptor[], errored?: boolean }> {
+  async getReactComponentsFromFile (filePath: string, reactDocgen?: typeof import('react-docgen')): Promise<{ components: ReactComponentDescriptor[], errored?: boolean }> {
     try {
       // this dance to get react-docgen is for now because react-docgen is a module and our typescript settings are set up to transpile to commonjs
       // which will require the module, which will fail because it's an es module. This is a temporary workaround.
diff --git a/packages/data-context/src/actions/DataEmitterActions.ts b/packages/data-context/src/actions/DataEmitterActions.ts
index 90215793c763..fd6ab3f5ceda 100644
--- a/packages/data-context/src/actions/DataEmitterActions.ts
+++ b/packages/data-context/src/actions/DataEmitterActions.ts
@@ -226,7 +226,7 @@ export class DataEmitterActions extends DataEmitterEvents {
    *                                                               the particular event. When the `listenerCount` is zero, then there are no
    *                                                               longer any subscribers for that event
    */
-  subscribeTo <T> (evt: keyof DataEmitterEvents, opts?: {sendInitial: boolean, initialValue?: T, filter?: (val: any) => boolean, onUnsubscribe?: (listenerCount: number) => void }): AsyncGenerator<T> {
+  subscribeTo <T> (evt: keyof DataEmitterEvents, opts?: { sendInitial: boolean, initialValue?: T, filter?: (val: any) => boolean, onUnsubscribe?: (listenerCount: number) => void }): AsyncGenerator<T> {
     const { sendInitial = true } = opts ?? {}
     let hasSentInitial = false
     let dfd: pDefer.DeferredPromise<any> | undefined
@@ -279,7 +279,7 @@ export class DataEmitterActions extends DataEmitterEvents {
       throw: async (error: Error) => {
         throw error
       },
-      return: async (): Promise<{ done: true, value: T | undefined}> => {
+      return: async (): Promise<{ done: true, value: T | undefined }> => {
         this.pub.off(evt, subscribed)
 
         if (opts?.onUnsubscribe) {
diff --git a/packages/data-context/src/actions/MigrationActions.ts b/packages/data-context/src/actions/MigrationActions.ts
index ab40842bd032..90cc7b9fce44 100644
--- a/packages/data-context/src/actions/MigrationActions.ts
+++ b/packages/data-context/src/actions/MigrationActions.ts
@@ -1,4 +1,3 @@
-/* eslint-disable no-dupe-class-members */
 import path from 'path'
 import debugLib from 'debug'
 import { fork } from 'child_process'
diff --git a/packages/data-context/src/actions/ProjectActions.ts b/packages/data-context/src/actions/ProjectActions.ts
index fb9a8fa2acb0..1ae84aecc19d 100644
--- a/packages/data-context/src/actions/ProjectActions.ts
+++ b/packages/data-context/src/actions/ProjectActions.ts
@@ -47,7 +47,7 @@ export interface ProjectApiShape {
   makeProjectSavedState(projectRoot: string): void
   getDevServer (): {
     updateSpecs(specs: SpecWithRelativeRoot[]): void
-    start(options: {specs: Cypress.Spec[], config: FullConfig}): Promise<{port: number}>
+    start(options: { specs: Cypress.Spec[], config: FullConfig }): Promise<{ port: number }>
     close(): void
     emitter: EventEmitter
   }
@@ -490,7 +490,7 @@ export class ProjectActions {
     }
   }
 
-  async runSpec ({ specPath }: { specPath: string}) {
+  async runSpec ({ specPath }: { specPath: string }) {
     const waitForBrowserToOpen = async () => {
       const browserStatusSubscription = this.ctx.emitter.subscribeTo('browserStatusChange', { sendInitial: false })
 
diff --git a/packages/data-context/src/data/LegacyPluginsIpc.ts b/packages/data-context/src/data/LegacyPluginsIpc.ts
index 7687e4bc403e..3a7962d62081 100644
--- a/packages/data-context/src/data/LegacyPluginsIpc.ts
+++ b/packages/data-context/src/data/LegacyPluginsIpc.ts
@@ -1,4 +1,3 @@
-/* eslint-disable no-dupe-class-members */
 import type { ChildProcess } from 'child_process'
 import EventEmitter from 'events'
 import type { CypressError } from '@packages/errors'
@@ -16,7 +15,7 @@ export class LegacyPluginsIpc extends EventEmitter {
     })
   }
 
-  send(event: 'loadLegacyPlugins', legacyConfig: LegacyCypressConfigJson): boolean
+  send (event: 'loadLegacyPlugins', legacyConfig: LegacyCypressConfigJson): boolean
   send (event: string, ...args: any[]) {
     if (this.childProcess.killed || !this.childProcess.connected) {
       return false
@@ -25,10 +24,10 @@ export class LegacyPluginsIpc extends EventEmitter {
     return this.childProcess.send({ event, args })
   }
 
-  on(event: 'ready', listener: () => void): this
-  on(event: 'loadLegacyPlugins:error', listener: (error: CypressError) => void): this
-  on(event: 'childProcess:unhandledError', listener: (legacyConfig: LegacyCypressConfigJson) => void): this
-  on(event: 'loadLegacyPlugins:reply', listener: (legacyConfig: LegacyCypressConfigJson) => void): this
+  on (event: 'ready', listener: () => void): this
+  on (event: 'loadLegacyPlugins:error', listener: (error: CypressError) => void): this
+  on (event: 'childProcess:unhandledError', listener: (legacyConfig: LegacyCypressConfigJson) => void): this
+  on (event: 'loadLegacyPlugins:reply', listener: (legacyConfig: LegacyCypressConfigJson) => void): this
   on (evt: string, listener: (...args: any[]) => void) {
     return super.on(evt, listener)
   }
diff --git a/packages/data-context/src/data/ProjectConfigIpc.ts b/packages/data-context/src/data/ProjectConfigIpc.ts
index eaa11a34772f..7d833c0b303a 100644
--- a/packages/data-context/src/data/ProjectConfigIpc.ts
+++ b/packages/data-context/src/data/ProjectConfigIpc.ts
@@ -1,4 +1,3 @@
-/* eslint-disable no-dupe-class-members */
 import { CypressError, getError } from '@packages/errors'
 import type { FullConfig, TestingType } from '@packages/types'
 import { ChildProcess, fork, ForkOptions, spawn } from 'child_process'
@@ -36,7 +35,7 @@ const isSandboxNeeded = () => {
 export interface SetupNodeEventsReply {
   setupConfig: Cypress.ConfigOptions | null
   requires: string[]
-  registrations: Array<{event: string, eventId: string}>
+  registrations: Array<{ event: string, eventId: string }>
 }
 
 export interface LoadConfigReply {
@@ -96,10 +95,10 @@ export class ProjectConfigIpc extends EventEmitter {
   }
 
   // TODO: options => Cypress.TestingTypeOptions
-  send(event: 'execute:plugins', evt: string, ids: {eventId: string, invocationId: string}, args: any[]): boolean
-  send(event: 'setupTestingType', testingType: TestingType, options: Cypress.PluginConfigOptions): boolean
-  send(event: 'loadConfig'): boolean
-  send(event: 'main:process:will:disconnect'): void
+  send (event: 'execute:plugins', evt: string, ids: { eventId: string, invocationId: string }, args: any[]): boolean
+  send (event: 'setupTestingType', testingType: TestingType, options: Cypress.PluginConfigOptions): boolean
+  send (event: 'loadConfig'): boolean
+  send (event: 'main:process:will:disconnect'): void
   send (event: string, ...args: any[]) {
     if (this._childProcess.killed || !this._childProcess.connected) {
       return false
@@ -108,29 +107,29 @@ export class ProjectConfigIpc extends EventEmitter {
     return this._childProcess.send({ event, args })
   }
 
-  on(evt: 'childProcess:unhandledError', listener: (err: CypressError) => void): this
-  on(evt: 'export:telemetry', listener: (data: string) => void): void
-  on(evt: 'main:process:will:disconnect:ack', listener: () => void): void
-  on(evt: 'warning', listener: (warningErr: CypressError) => void): this
+  on (evt: 'childProcess:unhandledError', listener: (err: CypressError) => void): this
+  on (evt: 'export:telemetry', listener: (data: string) => void): void
+  on (evt: 'main:process:will:disconnect:ack', listener: () => void): void
+  on (evt: 'warning', listener: (warningErr: CypressError) => void): this
   on (evt: string, listener: (...args: any[]) => void) {
     return super.on(evt, listener)
   }
 
-  once(evt: `promise:fulfilled:${string}`, listener: (err: any, value: any) => void): this
+  once (evt: `promise:fulfilled:${string}`, listener: (err: any, value: any) => void): this
 
   /**
    * When the config is loaded, it comes back with either a "reply", or an "error" if there was a problem
    * sourcing the config (script error, etc.)
    */
-  once(evt: 'ready', listener: () => void): this
-  once(evt: 'loadConfig:reply', listener: (payload: SerializedLoadConfigReply) => void): this
-  once(evt: 'loadConfig:error', listener: (err: CypressError) => void): this
+  once (evt: 'ready', listener: () => void): this
+  once (evt: 'loadConfig:reply', listener: (payload: SerializedLoadConfigReply) => void): this
+  once (evt: 'loadConfig:error', listener: (err: CypressError) => void): this
 
   /**
    * When
    */
-  once(evt: 'setupTestingType:reply', listener: (payload: SetupNodeEventsReply) => void): this
-  once(evt: 'setupTestingType:error', listener: (error: CypressError) => void): this
+  once (evt: 'setupTestingType:reply', listener: (payload: SetupNodeEventsReply) => void): this
+  once (evt: 'setupTestingType:error', listener: (error: CypressError) => void): this
   once (evt: string, listener: (...args: any[]) => void) {
     return super.once(evt, listener)
   }
diff --git a/packages/data-context/src/globalPubSub.ts b/packages/data-context/src/globalPubSub.ts
index 9f6afdaf45cb..868879a47e9b 100644
--- a/packages/data-context/src/globalPubSub.ts
+++ b/packages/data-context/src/globalPubSub.ts
@@ -1,4 +1,3 @@
-/* eslint-disable no-dupe-class-members */
 import EventEmitter from 'events'
 import type { DataContext } from './DataContext'
 
@@ -11,20 +10,20 @@ type MenuItem = 'log:out'
  * to reset the global state for testing / resetting when there is an error
  */
 export class GlobalPubSub extends EventEmitter {
-  on(msg: 'reset:data-context', listener: (ctx: DataContext) => void): this
-  on(msg: 'menu:item:clicked', listener: (item: MenuItem) => void): this
-  on(msg: 'test:cleanup', listener: (...args: any[]) => void): this
+  on (msg: 'reset:data-context', listener: (ctx: DataContext) => void): this
+  on (msg: 'menu:item:clicked', listener: (item: MenuItem) => void): this
+  on (msg: 'test:cleanup', listener: (...args: any[]) => void): this
   on (msg: string, listener: (...args: any[]) => void) {
     return super.on(msg, listener)
   }
 
-  emit(msg: 'menu:item:clicked', arg: MenuItem): boolean
-  emit(msg: 'reset:data-context', arg: DataContext): boolean
+  emit (msg: 'menu:item:clicked', arg: MenuItem): boolean
+  emit (msg: 'reset:data-context', arg: DataContext): boolean
   emit (msg: string, ...args: any[]) {
     return super.emit(msg, ...args)
   }
 
-  emitThen(msg: 'test:cleanup'): Promise<void>
+  emitThen (msg: 'test:cleanup'): Promise<void>
   async emitThen (msg: string, ...args: any[]): Promise<void> {
     // @ts-expect-error
     const events = this._events
diff --git a/packages/data-context/src/polling/index.ts b/packages/data-context/src/polling/index.ts
index be30f9691070..af7675ce0222 100644
--- a/packages/data-context/src/polling/index.ts
+++ b/packages/data-context/src/polling/index.ts
@@ -1,4 +1,3 @@
-/* eslint-disable padding-line-between-statements */
 // created by autobarrel, do not modify directly
 
 export * from './poller'
diff --git a/packages/data-context/src/polling/poller.ts b/packages/data-context/src/polling/poller.ts
index ba78cbe9e43a..eabf6219d7b5 100644
--- a/packages/data-context/src/polling/poller.ts
+++ b/packages/data-context/src/polling/poller.ts
@@ -25,7 +25,7 @@ export class Poller<E extends EventType, T = never, M = never> {
     this.pollingInterval = interval
   }
 
-  start (config: {initialValue?: T, meta?: M, filter?: (val: any) => boolean} = {}) {
+  start (config: { initialValue?: T, meta?: M, filter?: (val: any) => boolean } = {}) {
     const subscriptionId = ++this.#subscriptionId
 
     debug(`subscribing to ${this.event} with initial value %o and meta %o`, config?.initialValue, config?.meta)
diff --git a/packages/data-context/src/sources/BrowserDataSource.ts b/packages/data-context/src/sources/BrowserDataSource.ts
index e8a933f58b9d..81abf61b6a04 100644
--- a/packages/data-context/src/sources/BrowserDataSource.ts
+++ b/packages/data-context/src/sources/BrowserDataSource.ts
@@ -23,7 +23,7 @@ if (os.platform() === 'win32') {
 
 const platform = os.platform()
 
-function getBrowserKey<T extends {name: string, version: string | number}> (browser: T) {
+function getBrowserKey<T extends { name: string, version: string | number }> (browser: T) {
   return `${browser.name}-${browser.version}`
 }
 
diff --git a/packages/data-context/src/sources/CloudDataSource.ts b/packages/data-context/src/sources/CloudDataSource.ts
index 510e8fc4a136..586a5579db22 100644
--- a/packages/data-context/src/sources/CloudDataSource.ts
+++ b/packages/data-context/src/sources/CloudDataSource.ts
@@ -38,7 +38,6 @@ const REMOTE_SCHEMA_URLS = {
   production: 'https://cloud.cypress.io',
 }
 
-// eslint-disable-next-line @typescript-eslint/no-unused-vars
 type StartsWith<T, Prefix extends string> = T extends `${Prefix}${infer _U}` ? T : never
 type CloudQueryField = StartsWith<keyof NexusGen['fieldTypes']['Query'], 'cloud'>
 
@@ -121,10 +120,10 @@ export class CloudDataSource {
           ...urqlCacheKeys,
           updates: {
             Mutation: {
-              _cloudCacheInvalidate: (parent, { args }: {args: Parameters<Cache['invalidate']>}, cache, info) => {
+              _cloudCacheInvalidate: (parent, { args }: { args: Parameters<Cache['invalidate']> }, cache, info) => {
                 cache.invalidate(...args)
               },
-              _showUrqlCache: (parent, { args }: {args: Parameters<Cache['invalidate']>}, cache, info) => {
+              _showUrqlCache: (parent, { args }: { args: Parameters<Cache['invalidate']> }, cache, info) => {
                 this.#lastCache = JSON.stringify(cache, function replacer (key, value) {
                   if (value instanceof Map) {
                     const reducer = (obj: any, mapKey: any) => {
diff --git a/packages/data-context/src/sources/ProjectDataSource.ts b/packages/data-context/src/sources/ProjectDataSource.ts
index 8476c15c6f2c..75997a247a3e 100644
--- a/packages/data-context/src/sources/ProjectDataSource.ts
+++ b/packages/data-context/src/sources/ProjectDataSource.ts
@@ -149,7 +149,7 @@ export function getPathFromSpecPattern ({
 { specPattern: string
   testingType: TestingType
   fileExtensionToUse?: FileExtension
-  name?: string}) {
+  name?: string }) {
   function replaceWildCard (s: string, fallback: string) {
     return s.replace(/\*/g, fallback)
   }
diff --git a/packages/data-context/src/sources/RelevantRunsDataSource.ts b/packages/data-context/src/sources/RelevantRunsDataSource.ts
index 0d378bbd117d..cf37a827400e 100644
--- a/packages/data-context/src/sources/RelevantRunsDataSource.ts
+++ b/packages/data-context/src/sources/RelevantRunsDataSource.ts
@@ -44,7 +44,7 @@ export class RelevantRunsDataSource {
   #pollingInterval: number = 30
   #cached: RelevantRun = RUNS_EMPTY_RETURN
 
-  #runsPoller?: Poller<'relevantRunChange', RelevantRun, { name: RelevantRunLocationEnum}>
+  #runsPoller?: Poller<'relevantRunChange', RelevantRun, { name: RelevantRunLocationEnum }>
 
   constructor (private ctx: DataContext) {}
 
diff --git a/packages/data-context/src/sources/RemoteRequestDataSource.ts b/packages/data-context/src/sources/RemoteRequestDataSource.ts
index 67b4cbfed821..015063918da5 100644
--- a/packages/data-context/src/sources/RemoteRequestDataSource.ts
+++ b/packages/data-context/src/sources/RemoteRequestDataSource.ts
@@ -27,7 +27,7 @@ interface OperationDefinition {
   operation: string
   operationDoc: DocumentNode
   operationHash: string
-  operationVariableDefs: [string, {type: TypeNode, defaultValue?: ValueNode}][]
+  operationVariableDefs: [string, { type: TypeNode, defaultValue?: ValueNode }][]
   remoteQueryField: string
   fieldArgMapping: Record<string, string>
 }
@@ -312,7 +312,7 @@ export class RemoteRequestDataSource {
 
     const remoteFieldArgs = queryFieldDef.args
 
-    const operationVariableDefs: [string, {type: TypeNode, defaultValue?: ValueNode}][] = []
+    const operationVariableDefs: [string, { type: TypeNode, defaultValue?: ValueNode }][] = []
     const fieldArgs: [string, ValueNode][] = []
 
     const fieldArgMapping: Record<string, string> = {}
@@ -371,7 +371,7 @@ export class RemoteRequestDataSource {
   // Gather the referenced variables from each of the field nodes we
   // are generating a query with
   #getReferencedVariables (selectionNodes: readonly SelectionNode[], outerVariableDefs: readonly VariableDefinitionNode[]) {
-    const variableDefinitions: Record<string, {type: TypeNode, defaultValue?: ValueNode}> = {}
+    const variableDefinitions: Record<string, { type: TypeNode, defaultValue?: ValueNode }> = {}
 
     selectionNodes.map((node) => {
       visit(node, {
@@ -410,7 +410,7 @@ export class RemoteRequestDataSource {
       fieldName: string
       fieldArgs: [string, ValueNode][]
       fieldNodes: readonly SelectionNode[]
-      operationVariableDefs: [string, {type: TypeNode, defaultValue?: ValueNode}][]
+      operationVariableDefs: [string, { type: TypeNode, defaultValue?: ValueNode }][]
     },
   ): DocumentNode {
     const { operationVariableDefs = [], fieldArgs = [] } = params
diff --git a/packages/data-context/src/sources/VersionsDataSource.ts b/packages/data-context/src/sources/VersionsDataSource.ts
index 4c464884374c..f72f1fa95a64 100644
--- a/packages/data-context/src/sources/VersionsDataSource.ts
+++ b/packages/data-context/src/sources/VersionsDataSource.ts
@@ -110,7 +110,7 @@ export class VersionsDataSource {
 
     try {
       response = await this.ctx.util.fetch(NPM_CYPRESS_REGISTRY_URL)
-      const responseJson = await response.json() as { time: Record<string, string>}
+      const responseJson = await response.json() as { time: Record<string, string> }
 
       debug('NPM release dates received %o', { modified: responseJson.time.modified })
 
diff --git a/packages/data-context/src/sources/migration/legacyOptions.ts b/packages/data-context/src/sources/migration/legacyOptions.ts
index c0cd4ba8da2a..f7ee9af2d694 100644
--- a/packages/data-context/src/sources/migration/legacyOptions.ts
+++ b/packages/data-context/src/sources/migration/legacyOptions.ts
@@ -290,7 +290,7 @@ const runtimeOptions: Array<RuntimeConfigOption> = [
   },
 ]
 
-export const legacyOptions: Array<ResolvedConfigOption|RuntimeConfigOption> = [
+export const legacyOptions: Array<ResolvedConfigOption | RuntimeConfigOption> = [
   ...resolvedOptions,
   ...runtimeOptions,
 ]
diff --git a/packages/data-context/src/util/DocumentNodeBuilder.ts b/packages/data-context/src/util/DocumentNodeBuilder.ts
index f71fc6c799ab..230f17932b9a 100644
--- a/packages/data-context/src/util/DocumentNodeBuilder.ts
+++ b/packages/data-context/src/util/DocumentNodeBuilder.ts
@@ -5,7 +5,7 @@ export interface RemoteQueryConfig {
   variableDefinitions: VariableDefinitionNode[]
 }
 
-export type DocumentNodeBuilderParams = Pick<GraphQLResolveInfo, 'fieldNodes' | 'parentType'> & {isNode?: boolean, isRemoteFetchable?: boolean, variableDefinitions: readonly VariableDefinitionNode[] | undefined, operationName: string}
+export type DocumentNodeBuilderParams = Pick<GraphQLResolveInfo, 'fieldNodes' | 'parentType'> & { isNode?: boolean, isRemoteFetchable?: boolean, variableDefinitions: readonly VariableDefinitionNode[] | undefined, operationName: string }
 
 /**
  * Builds a DocumentNode from a given GraphQLResolveInfo payload
diff --git a/packages/data-context/src/util/autoBindDebug.ts b/packages/data-context/src/util/autoBindDebug.ts
index b88d80657d34..b4726d990f61 100644
--- a/packages/data-context/src/util/autoBindDebug.ts
+++ b/packages/data-context/src/util/autoBindDebug.ts
@@ -11,7 +11,7 @@ const debugLibCache: Record<string, debugLib.Debugger> = {}
  * to the constructor of the class for which you want to enable logging, you can then
  * set DEBUG=cypress-trace:<ClassName> to utilize the logging
  */
-export function autoBindDebug <T extends object> (obj: T): T {
+export function autoBindDebug<T extends object> (obj: T): T {
   const ns = `trace-cypress:${obj.constructor.name}`
   const debug = debugLibCache[ns] = debugLibCache[ns] || debugLib(ns)
 
diff --git a/packages/data-context/src/util/cached.ts b/packages/data-context/src/util/cached.ts
index f93c68b84f21..9d5db8d1d96b 100644
--- a/packages/data-context/src/util/cached.ts
+++ b/packages/data-context/src/util/cached.ts
@@ -27,7 +27,6 @@ export const cached = <T>(
     throw new Error('@cached target must be configurable')
   } else {
     descriptor.get = function () {
-      // eslint-disable-next-line
       const value = originalMethod.apply(this, arguments as any)
       const newDescriptor: PropertyDescriptor = {
         configurable: false,
diff --git a/packages/data-context/src/util/config-file-updater.ts b/packages/data-context/src/util/config-file-updater.ts
index 421136c73385..ac5be8a2889e 100644
--- a/packages/data-context/src/util/config-file-updater.ts
+++ b/packages/data-context/src/util/config-file-updater.ts
@@ -200,7 +200,7 @@ function setSubKeysSplicers (
 
   const keysToUpdateWithObjects: string[] = []
 
-  const objSubkeys = Object.keys(obj).filter((key) => typeof obj[key] === 'object').reduce((acc: Array<{parent: string, subkey: string}>, key) => {
+  const objSubkeys = Object.keys(obj).filter((key) => typeof obj[key] === 'object').reduce((acc: Array<{ parent: string, subkey: string }>, key) => {
     keysToUpdateWithObjects.push(key)
     Object.entries(obj[key]).forEach(([subkey, value]) => {
       if (['boolean', 'number', 'string'].includes(typeof value)) {
@@ -294,7 +294,7 @@ function isUndefinedOrNull (value: NodePath['node']): value is namedTypes.Identi
   return value.type === 'Identifier' && ['undefined', 'null'].includes(value.name)
 }
 
-interface Splicer{
+interface Splicer {
   start: number
   end: number
   replaceString: string
diff --git a/packages/data-context/src/util/testCounts.ts b/packages/data-context/src/util/testCounts.ts
index 1607c2721914..a645961ee1f1 100644
--- a/packages/data-context/src/util/testCounts.ts
+++ b/packages/data-context/src/util/testCounts.ts
@@ -13,7 +13,7 @@ export async function getTestCounts (specs: SpecWithRelativeRoot[]) {
   const startTime = performance.now()
 
   const specCountPromises = specs.map((spec) => {
-    return new Promise<{path: string, isExample: boolean, testCounts: number}>((resolve, reject) => {
+    return new Promise<{ path: string, isExample: boolean, testCounts: number }>((resolve, reject) => {
       let testCounts = 0
 
       readline.createInterface({
diff --git a/packages/data-context/test/fixtures/browsers.ts b/packages/data-context/test/fixtures/browsers.ts
index 4a2772dc405c..466ec96338bd 100644
--- a/packages/data-context/test/fixtures/browsers.ts
+++ b/packages/data-context/test/fixtures/browsers.ts
@@ -1,4 +1,4 @@
-import { FoundBrowser } from "@packages/types";
+import { FoundBrowser } from '@packages/types'
 
 export const foundBrowserChrome: FoundBrowser = {
   name: 'chrome',
@@ -6,7 +6,7 @@ export const foundBrowserChrome: FoundBrowser = {
   channel: 'stable',
   displayName: 'Chrome',
   path: '/usr/bin/chrome',
-  version: '100.0.0'
+  version: '100.0.0',
 } as const
 
 export const userBrowser: Cypress.Browser = {
@@ -16,4 +16,4 @@ export const userBrowser: Cypress.Browser = {
   isHeadless: false,
   family: 'chromium',
   majorVersion: '100',
-}
\ No newline at end of file
+}
diff --git a/packages/data-context/test/unit/actions/DataEmitterActions.spec.ts b/packages/data-context/test/unit/actions/DataEmitterActions.spec.ts
index be7aa26c83d6..03b1c27d214e 100644
--- a/packages/data-context/test/unit/actions/DataEmitterActions.spec.ts
+++ b/packages/data-context/test/unit/actions/DataEmitterActions.spec.ts
@@ -20,7 +20,6 @@ describe('DataEmitterActions', () => {
       let completed = false
 
       const testIterator = async () => {
-        // eslint-disable-next-line @typescript-eslint/no-unused-vars
         for await (const _value of subscription) {
           items += 1
         }
@@ -56,7 +55,6 @@ describe('DataEmitterActions', () => {
       let completed = false
 
       const testIterator = async () => {
-        // eslint-disable-next-line @typescript-eslint/no-unused-vars
         for await (const _value of subscription) {
           items += 1
         }
@@ -87,7 +85,6 @@ describe('DataEmitterActions', () => {
       let completed = false
 
       const testIterator = async () => {
-        // eslint-disable-next-line @typescript-eslint/no-unused-vars
         for await (const _value of subscription) {
           items += 1
         }
@@ -115,7 +112,6 @@ describe('DataEmitterActions', () => {
       }
 
       const testIterator = async () => {
-        // eslint-disable-next-line @typescript-eslint/no-unused-vars
         for await (const _value of subscription) {
           returnVal.items += 1
         }
diff --git a/packages/data-context/test/unit/codegen/files/react/Button.jsx b/packages/data-context/test/unit/codegen/files/react/Button.jsx
index a7990e65bb99..aaa8a894321b 100644
--- a/packages/data-context/test/unit/codegen/files/react/Button.jsx
+++ b/packages/data-context/test/unit/codegen/files/react/Button.jsx
@@ -1,13 +1,14 @@
 // @ts-nocheck
-import React from 'react';
-import PropTypes from 'prop-types';
-import './button.css';
+import React from 'react'
+import PropTypes from 'prop-types'
+import './button.css'
 
 /**
  * Primary UI component for user interaction
  */
-export default Button = ({ primary, backgroundColor, size, label, ...props }) => {
-  const mode = primary ? 'button--primary' : 'button--secondary';
+const Button = ({ primary, backgroundColor, size, label, ...props }) => {
+  const mode = primary ? 'button--primary' : 'button--secondary'
+
   return (
     <button
       type="button"
@@ -17,8 +18,10 @@ export default Button = ({ primary, backgroundColor, size, label, ...props }) =>
     >
       {label}
     </button>
-  );
-};
+  )
+}
+
+export default Button
 
 Button.propTypes = {
   /**
@@ -41,11 +44,11 @@ Button.propTypes = {
    * Optional click handler
    */
   onClick: PropTypes.func,
-};
+}
 
 Button.defaultProps = {
   backgroundColor: null,
   primary: false,
   size: 'medium',
   onClick: undefined,
-};
+}
diff --git a/packages/data-context/test/unit/codegen/files/vue/Button.vue b/packages/data-context/test/unit/codegen/files/vue/Button.vue
index f010c2cc6083..2d9ab6c111c0 100644
--- a/packages/data-context/test/unit/codegen/files/vue/Button.vue
+++ b/packages/data-context/test/unit/codegen/files/vue/Button.vue
@@ -1,14 +1,21 @@
 <template>
-  <button type="button" :class="classes" @click="onClick" :style="style">{{ label }}</button>
+  <button
+    type="button"
+    :class="classes"
+    :style="style"
+    @click="onClick"
+  >
+    {{ label }}
+  </button>
 </template>
 
 <script>
 // @ts-nocheck
-import './button.css';
-import { reactive, computed } from 'vue';
+import './button.css'
+import { reactive, computed } from 'vue'
 
 export default {
-  name: 'my-button',
+  name: 'MyButton',
 
   props: {
     label: {
@@ -22,7 +29,7 @@ export default {
     size: {
       type: String,
       validator: function (value) {
-        return ['small', 'medium', 'large'].indexOf(value) !== -1;
+        return ['small', 'medium', 'large'].indexOf(value) !== -1
       },
     },
     backgroundColor: {
@@ -32,8 +39,9 @@ export default {
 
   emits: ['click'],
 
-  setup(props, { emit }) {
-    props = reactive(props);
+  setup (props, { emit }) {
+    props = reactive(props)
+
     return {
       classes: computed(() => ({
         'button': true,
@@ -44,10 +52,10 @@ export default {
       style: computed(() => ({
         backgroundColor: props.backgroundColor,
       })),
-      onClick() {
-        emit('click');
-      }
+      onClick () {
+        emit('click')
+      },
     }
   },
-};
+}
 </script>
diff --git a/packages/data-context/test/unit/polling/poller.spec.ts b/packages/data-context/test/unit/polling/poller.spec.ts
index 56609186439f..4a27f5038c97 100644
--- a/packages/data-context/test/unit/polling/poller.spec.ts
+++ b/packages/data-context/test/unit/polling/poller.spec.ts
@@ -111,7 +111,7 @@ describe('Poller', () => {
     const callback = sinon.stub()
     const interval = 5
 
-    const poller = new Poller<'relevantRunChange', { name: string }, { name: string}>(ctx, 'relevantRunChange', interval, callback)
+    const poller = new Poller<'relevantRunChange', { name: string }, { name: string }>(ctx, 'relevantRunChange', interval, callback)
 
     expect(poller.subscriptions).to.have.length(0)
 

From b664d1ba744a716c2ba89c7fbf1c5ce77e50b2b7 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 09:51:15 -0500
Subject: [PATCH 041/127] eslint for packages/driver

---
 packages/driver/.eslintignore                  |  5 -----
 .../cypress/e2e/commands/assertions.cy.js      |  3 ++-
 .../driver/cypress/e2e/e2e/origin/events.cy.ts |  4 ++--
 .../cypress/e2e/e2e/origin/integrity.cy.ts     |  4 ++--
 .../e2e/e2e/origin/uncaught_errors.cy.ts       |  2 ++
 .../cypress/e2e/e2e/testConfigOverrides.cy.js  |  2 --
 packages/driver/eslint.config.ts               | 18 ++++++++++++++++++
 packages/driver/index.d.ts                     |  3 ++-
 packages/driver/package.json                   |  2 +-
 .../driver/src/cross-origin/communicator.ts    |  5 +++--
 packages/driver/src/cross-origin/cypress.ts    |  1 -
 packages/driver/src/cross-origin/origin_fn.ts  |  2 +-
 packages/driver/src/cy/aliases.ts              |  1 -
 packages/driver/src/cy/chai.ts                 |  1 -
 packages/driver/src/cy/chai/inspect.ts         |  1 -
 .../driver/src/cy/commands/actions/submit.ts   |  2 +-
 packages/driver/src/cy/commands/asserting.ts   |  4 ++--
 packages/driver/src/cy/commands/commands.ts    |  2 +-
 packages/driver/src/cy/commands/connectors.ts  |  1 -
 packages/driver/src/cy/commands/screenshot.ts  |  4 ++--
 .../driver/src/cy/commands/sessions/index.ts   |  2 +-
 packages/driver/src/cy/focused.ts              |  1 -
 packages/driver/src/cy/jquery.ts               |  1 -
 packages/driver/src/cy/keyboard.ts             |  4 ++--
 packages/driver/src/cy/listeners.ts            |  2 +-
 packages/driver/src/cy/location.ts             |  1 -
 packages/driver/src/cy/mouse.ts                |  2 +-
 packages/driver/src/cy/retries.ts              |  1 -
 packages/driver/src/cy/stability.ts            |  1 -
 packages/driver/src/cy/testConfigOverrides.ts  |  6 +++---
 packages/driver/src/cy/timeouts.ts             |  1 -
 packages/driver/src/cy/timers.ts               |  1 -
 packages/driver/src/cy/top_attr_guards.ts      |  4 ++--
 packages/driver/src/cy/xhrs.ts                 |  1 -
 packages/driver/src/cypress/command_queue.ts   |  2 --
 packages/driver/src/cypress/cy.ts              |  4 +---
 packages/driver/src/cypress/error_messages.ts  |  4 ++--
 packages/driver/src/cypress/log.ts             |  2 +-
 packages/driver/src/cypress/mocha.ts           |  3 +--
 packages/driver/src/cypress/runner.ts          |  1 -
 packages/driver/src/dom/coordinates.ts         |  3 ---
 packages/driver/src/dom/elements/find.ts       |  2 +-
 packages/driver/src/util/serialization/log.ts  |  2 +-
 packages/driver/types/cypress/log.d.ts         |  4 ++--
 44 files changed, 58 insertions(+), 64 deletions(-)
 delete mode 100644 packages/driver/.eslintignore
 create mode 100644 packages/driver/eslint.config.ts

diff --git a/packages/driver/.eslintignore b/packages/driver/.eslintignore
deleted file mode 100644
index 2b42008bda67..000000000000
--- a/packages/driver/.eslintignore
+++ /dev/null
@@ -1,5 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
diff --git a/packages/driver/cypress/e2e/commands/assertions.cy.js b/packages/driver/cypress/e2e/commands/assertions.cy.js
index 3da8fa44a2fe..e245409c4d85 100644
--- a/packages/driver/cypress/e2e/commands/assertions.cy.js
+++ b/packages/driver/cypress/e2e/commands/assertions.cy.js
@@ -1189,6 +1189,7 @@ describe('src/cy/commands/assertions', () => {
   describe('message formatting', () => {
     const expectMarkdown = (test, message, done) => {
       cy.then(() => {
+        // eslint-disable-next-line mocha/no-empty-description
         test()
       })
 
@@ -1325,7 +1326,7 @@ describe('src/cy/commands/assertions', () => {
     describe('#contain', () => {
       it('can find input type submit by value', function () {
         // $input creates an HTML element to be tested.
-        // eslint-disable-next-line no-unused-vars
+
         const $input = cy.$$('<input type=\'submit\' value=\'click me\' />').appendTo(this.$body)
 
         cy.get('input[type=submit]').should('contain', 'click me')
diff --git a/packages/driver/cypress/e2e/e2e/origin/events.cy.ts b/packages/driver/cypress/e2e/e2e/origin/events.cy.ts
index e0c80a28bdb8..335f734e0470 100644
--- a/packages/driver/cypress/e2e/e2e/origin/events.cy.ts
+++ b/packages/driver/cypress/e2e/e2e/origin/events.cy.ts
@@ -1,7 +1,7 @@
 describe('cy.origin', { browser: '!webkit' }, () => {
   it('window:before:load event', () => {
     cy.visit('/fixtures/primary-origin.html')
-    cy.on('window:before:load', (win: {testPrimaryOriginBeforeLoad: boolean}) => {
+    cy.on('window:before:load', (win: { testPrimaryOriginBeforeLoad: boolean }) => {
       win.testPrimaryOriginBeforeLoad = true
     })
 
@@ -9,7 +9,7 @@ describe('cy.origin', { browser: '!webkit' }, () => {
 
     // Needs to be declared before the visit
     cy.origin('http://www.foobar.com:3500', () => {
-      cy.on('window:before:load', (win: {testSecondaryWindowBeforeLoad: boolean}) => {
+      cy.on('window:before:load', (win: { testSecondaryWindowBeforeLoad: boolean }) => {
         win.testSecondaryWindowBeforeLoad = true
       })
     })
diff --git a/packages/driver/cypress/e2e/e2e/origin/integrity.cy.ts b/packages/driver/cypress/e2e/e2e/origin/integrity.cy.ts
index bdf1ae2f1014..c1bea3c6441c 100644
--- a/packages/driver/cypress/e2e/e2e/origin/integrity.cy.ts
+++ b/packages/driver/cypress/e2e/e2e/origin/integrity.cy.ts
@@ -14,8 +14,8 @@ describe('Integrity Preservation', { browser: '!webkit' }, () => {
   // See https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity on SRI integrity.
 
   const availableDigests = ['SHA256', 'SHA384', 'SHA512']
-  const integrityJSDigests: {[key: string]: string} = {}
-  const integrityCSSDigests: {[key: string]: string} = {}
+  const integrityJSDigests: { [key: string]: string } = {}
+  const integrityCSSDigests: { [key: string]: string } = {}
   let templateExecutor: TemplateExecutor
 
   before(() => {
diff --git a/packages/driver/cypress/e2e/e2e/origin/uncaught_errors.cy.ts b/packages/driver/cypress/e2e/e2e/origin/uncaught_errors.cy.ts
index 097c254430c4..f6cdf5f0d738 100644
--- a/packages/driver/cypress/e2e/e2e/origin/uncaught_errors.cy.ts
+++ b/packages/driver/cypress/e2e/e2e/origin/uncaught_errors.cy.ts
@@ -363,6 +363,7 @@ describe('cy.origin - uncaught errors', { browser: '!webkit' }, () => {
           get name () {
             return this._name
           }
+
           set name (name: string) {
             this._name = name
           }
@@ -399,6 +400,7 @@ describe('cy.origin - uncaught errors', { browser: '!webkit' }, () => {
           get metasyntaticList (): string[] {
             return this._metasyntaticList
           }
+
           set metasyntaticList (itemsToAdd: string[]) {
             this._metasyntaticList = this._metasyntaticList.concat(itemsToAdd)
           }
diff --git a/packages/driver/cypress/e2e/e2e/testConfigOverrides.cy.js b/packages/driver/cypress/e2e/e2e/testConfigOverrides.cy.js
index d7431df2f1c3..f58af1d9c80c 100644
--- a/packages/driver/cypress/e2e/e2e/testConfigOverrides.cy.js
+++ b/packages/driver/cypress/e2e/e2e/testConfigOverrides.cy.js
@@ -1,5 +1,3 @@
-/* eslint-disable @cypress/dev/skip-comment,mocha/no-exclusive-tests */
-
 describe('per-test config', () => {
   const testState = {
     ranFirefox: false,
diff --git a/packages/driver/eslint.config.ts b/packages/driver/eslint.config.ts
new file mode 100644
index 000000000000..19bd8f3a4aa8
--- /dev/null
+++ b/packages/driver/eslint.config.ts
@@ -0,0 +1,18 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['cypress/fixtures/**/*', 'src/config/jquery.scrollto.ts'],
+  },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['index.d.ts', 'cypress/e2e/e2e/origin/dependencies.cy.jsx', 'src/cypress/setter_getter.d.ts'],
+        },
+      },
+    },
+  },
+]
diff --git a/packages/driver/index.d.ts b/packages/driver/index.d.ts
index 10d847e97a11..434e09c3fea0 100644
--- a/packages/driver/index.d.ts
+++ b/packages/driver/index.d.ts
@@ -4,4 +4,5 @@
 export const $Cypress: Cypress.Cypress
 
 export const $: JQuery
-export default $Cypress
\ No newline at end of file
+
+export default $Cypress
diff --git a/packages/driver/package.json b/packages/driver/package.json
index 041cfc593e44..d5ef57c5ea8f 100644
--- a/packages/driver/package.json
+++ b/packages/driver/package.json
@@ -9,7 +9,7 @@
     "cypress:run": "node ../../scripts/cypress run --config-file ./cypress.config.ts",
     "cypress:run:inject-document-domain": "node ../../scripts/cypress run --config-file ./cypress.config-injectDocumentDomain.ts",
     "postinstall": "patch-package",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "start": "node -e 'console.log(require(`chalk`).red(`\nError:\n\tRunning \\`yarn start\\` is no longer needed for driver/cypress tests.\n\tWe now automatically spawn the server in e2e.setupNodeEvents config.\n\tChanges to the server will be watched and reloaded automatically.`))'"
   },
   "dependencies": {},
diff --git a/packages/driver/src/cross-origin/communicator.ts b/packages/driver/src/cross-origin/communicator.ts
index 550a6955f79c..f8cacf1faa37 100644
--- a/packages/driver/src/cross-origin/communicator.ts
+++ b/packages/driver/src/cross-origin/communicator.ts
@@ -68,7 +68,7 @@ const sharedPromiseSetup = ({
  * @extends EventEmitter
  */
 export class PrimaryOriginCommunicator extends EventEmitter {
-  private crossOriginDriverWindows: {[key: string]: Window} = {}
+  private crossOriginDriverWindows: { [key: string]: Window } = {}
   userInvocationStack?: string
 
   /**
@@ -320,6 +320,7 @@ export class SpecBridgeCommunicator extends EventEmitter {
       }, '*')
     })
   }
+
   /**
    * Promisified event sent to the primary communicator that expects the same event reflected back with the response.
    * @param {string} event - the name of the event to be sent.
@@ -336,7 +337,7 @@ export class SpecBridgeCommunicator extends EventEmitter {
   }: {
     event: string
     data?: Cypress.ObjectLike
-    options: {syncGlobals: boolean}
+    options: { syncGlobals: boolean }
     timeout: number
   }) {
     return new Promise<T>((resolve, reject) => {
diff --git a/packages/driver/src/cross-origin/cypress.ts b/packages/driver/src/cross-origin/cypress.ts
index 1ea7a3498b1c..9acf3a7a4f2a 100644
--- a/packages/driver/src/cross-origin/cypress.ts
+++ b/packages/driver/src/cross-origin/cypress.ts
@@ -149,7 +149,6 @@ const setup = (cypressConfig: Cypress.Config, env: Cypress.ObjectLike) => {
   cy.onBeforeAppWindowLoad = onBeforeAppWindowLoad(Cypress, cy)
 }
 
-// eslint-disable-next-line @cypress/dev/arrow-body-multiline-braces
 const onBeforeAppWindowLoad = (Cypress: Cypress.Cypress, cy: $Cy) => (autWindow: Window) => {
   autWindow.Cypress = Cypress
 
diff --git a/packages/driver/src/cross-origin/origin_fn.ts b/packages/driver/src/cross-origin/origin_fn.ts
index 3a6106886e2a..cf9dfd5750f7 100644
--- a/packages/driver/src/cross-origin/origin_fn.ts
+++ b/packages/driver/src/cross-origin/origin_fn.ts
@@ -33,7 +33,7 @@ interface GetFileResult {
   error?: string
 }
 
-const rehydrateRunnable = (data: serializedRunnable): Runnable|Test => {
+const rehydrateRunnable = (data: serializedRunnable): Runnable | Test => {
   let runnable
 
   if (data.type === 'test') {
diff --git a/packages/driver/src/cy/aliases.ts b/packages/driver/src/cy/aliases.ts
index 30ae2565e2c7..6a1276ef7b6d 100644
--- a/packages/driver/src/cy/aliases.ts
+++ b/packages/driver/src/cy/aliases.ts
@@ -16,7 +16,6 @@ export const aliasDisplayName = (name) => {
   return name.replace(aliasDisplayRe, '')
 }
 
-// eslint-disable-next-line @cypress/dev/arrow-body-multiline-braces
 export const create = (cy: $Cy) => ({
   addAlias (ctx, aliasObj) {
     const { alias } = aliasObj
diff --git a/packages/driver/src/cy/chai.ts b/packages/driver/src/cy/chai.ts
index 948fd67eccef..c91685b83054 100644
--- a/packages/driver/src/cy/chai.ts
+++ b/packages/driver/src/cy/chai.ts
@@ -1,4 +1,3 @@
-/* eslint-disable prefer-rest-params */
 // tests in driver/cypress/integration/commands/assertions_spec.js
 
 import _ from 'lodash'
diff --git a/packages/driver/src/cy/chai/inspect.ts b/packages/driver/src/cy/chai/inspect.ts
index 5dfccd83fdc0..46e51d3e6482 100644
--- a/packages/driver/src/cy/chai/inspect.ts
+++ b/packages/driver/src/cy/chai/inspect.ts
@@ -215,7 +215,6 @@ export function create (chai) {
       return formatError(value)
     }
 
-    // eslint-disable-next-line eqeqeq
     if (keys.length === 0 && (!array || value.length == 0)) {
       return braces[0] + base + braces[1]
     }
diff --git a/packages/driver/src/cy/commands/actions/submit.ts b/packages/driver/src/cy/commands/actions/submit.ts
index 62f382792b36..b48e426de7d0 100644
--- a/packages/driver/src/cy/commands/actions/submit.ts
+++ b/packages/driver/src/cy/commands/actions/submit.ts
@@ -7,7 +7,7 @@ import $errUtils from '../../../cypress/error_utils'
 import $actionability from '../../actionability'
 import type { Log } from '../../../cypress/log'
 
-interface InternalSubmitOptions extends Partial<Cypress.Loggable & Cypress.Timeoutable>{
+interface InternalSubmitOptions extends Partial<Cypress.Loggable & Cypress.Timeoutable> {
   _log?: Log
   $el: JQuery<HTMLFormElement>
 }
diff --git a/packages/driver/src/cy/commands/asserting.ts b/packages/driver/src/cy/commands/asserting.ts
index ac480e549dc8..c9e6df76217a 100644
--- a/packages/driver/src/cy/commands/asserting.ts
+++ b/packages/driver/src/cy/commands/asserting.ts
@@ -216,13 +216,13 @@ export default function (Commands, Cypress, cy, state) {
   Commands.addAll({ type: 'assertion', prevSubject: true }, {
     should () {
       // Cast to `any` to pass all arguments
-      // eslint-disable-next-line prefer-rest-params
+
       return shouldFn.apply(this, arguments as any)
     },
 
     and () {
       // Cast to `any` to pass all arguments
-      // eslint-disable-next-line prefer-rest-params
+
       return shouldFn.apply(this, arguments as any)
     },
   })
diff --git a/packages/driver/src/cy/commands/commands.ts b/packages/driver/src/cy/commands/commands.ts
index f0169ea33ea4..27af454b9186 100644
--- a/packages/driver/src/cy/commands/commands.ts
+++ b/packages/driver/src/cy/commands/commands.ts
@@ -12,7 +12,7 @@ const command = function (ctx, name, ...args) {
     })
   }
 
-  return ctx[name].apply(ctx, args)
+  return ctx[name](...args)
 }
 
 export default function (Commands, Cypress, cy) {
diff --git a/packages/driver/src/cy/commands/connectors.ts b/packages/driver/src/cy/commands/connectors.ts
index 5c54c52dff1f..237a00549887 100644
--- a/packages/driver/src/cy/commands/connectors.ts
+++ b/packages/driver/src/cy/commands/connectors.ts
@@ -372,7 +372,6 @@ export default function (Commands, Cypress, cy, state) {
 
   Commands.addAll({ prevSubject: 'optional' }, {
     then (subject, userOptions, fn) {
-      // eslint-disable-next-line prefer-rest-params
       return thenFn.apply(this, [subject, userOptions, fn])
     },
   })
diff --git a/packages/driver/src/cy/commands/screenshot.ts b/packages/driver/src/cy/commands/screenshot.ts
index 6437d54a4f6e..0d9c6b767ca9 100644
--- a/packages/driver/src/cy/commands/screenshot.ts
+++ b/packages/driver/src/cy/commands/screenshot.ts
@@ -33,7 +33,7 @@ type TakeScreenshotOptions = {
   timeout?: number
 }
 
-type AutomationOptions = TakeScreenshotOptions & Omit<Cypress.ScreenshotOptions, 'onBeforeScreenshot'| 'onAfterScreenshot' | 'disableTimersAndAnimations' | 'scale' | 'padding'> & Partial<Cypress.ScreenshotOptions>
+type AutomationOptions = TakeScreenshotOptions & Omit<Cypress.ScreenshotOptions, 'onBeforeScreenshot' | 'onAfterScreenshot' | 'disableTimersAndAnimations' | 'scale' | 'padding'> & Partial<Cypress.ScreenshotOptions>
 
 const getViewportHeight = (state: StateFunc) => {
   // TODO this doesn't seem correct
@@ -310,7 +310,7 @@ const takeElementScreenshot = ($el: JQuery<HTMLElement>, state: StateFunc, autom
 }
 
 // "app only" means we're hiding the runner UI
-const isAppOnly = ({ capture }: { capture: Cypress.ScreenshotOptions['capture']}) => {
+const isAppOnly = ({ capture }: { capture: Cypress.ScreenshotOptions['capture'] }) => {
   return (capture === 'viewport') || (capture === 'fullPage')
 }
 
diff --git a/packages/driver/src/cy/commands/sessions/index.ts b/packages/driver/src/cy/commands/sessions/index.ts
index 8c116c8870ed..6943e30ab7fa 100644
--- a/packages/driver/src/cy/commands/sessions/index.ts
+++ b/packages/driver/src/cy/commands/sessions/index.ts
@@ -32,7 +32,7 @@ export default function (Commands, Cypress, cy) {
       }
     })
 
-    Cypress.on('test:before:after:run:async', (test, Cypress, { nextTestHasTestIsolationOn }: {nextTestHasTestIsolationOn?: boolean} = {}) => {
+    Cypress.on('test:before:after:run:async', (test, Cypress, { nextTestHasTestIsolationOn }: { nextTestHasTestIsolationOn?: boolean } = {}) => {
       if (nextTestHasTestIsolationOn || nextTestHasTestIsolationOn === undefined) {
         return navigateAboutBlank({ inBetweenTestsAndNextTestHasTestIsolationOn: true })
       }
diff --git a/packages/driver/src/cy/focused.ts b/packages/driver/src/cy/focused.ts
index 85edd76541eb..cf3a8637342c 100644
--- a/packages/driver/src/cy/focused.ts
+++ b/packages/driver/src/cy/focused.ts
@@ -49,7 +49,6 @@ const simulateFocusEvent = (el, win) => {
   return el.dispatchEvent(focusinEvt)
 }
 
-// eslint-disable-next-line @cypress/dev/arrow-body-multiline-braces
 export const create = (state: StateFunc) => ({
   documentHasFocus () {
     // hardcode document has focus as true
diff --git a/packages/driver/src/cy/jquery.ts b/packages/driver/src/cy/jquery.ts
index 7196ebe2190a..3e9a81e8f7f6 100644
--- a/packages/driver/src/cy/jquery.ts
+++ b/packages/driver/src/cy/jquery.ts
@@ -8,7 +8,6 @@ const remoteJQueryisNotSameAsGlobal = (remoteJQuery) => {
   return remoteJQuery && (remoteJQuery !== $)
 }
 
-// eslint-disable-next-line @cypress/dev/arrow-body-multiline-braces
 export const create = (state: StateFunc) => ({
   $$ (selector, context?) {
     if (context == null) {
diff --git a/packages/driver/src/cy/keyboard.ts b/packages/driver/src/cy/keyboard.ts
index fbeb454fe78d..2da05198d219 100644
--- a/packages/driver/src/cy/keyboard.ts
+++ b/packages/driver/src/cy/keyboard.ts
@@ -7,7 +7,7 @@ import { USKeyboard } from '../cypress/UsKeyboardLayout'
 import $dom from '../dom'
 import $document from '../dom/document'
 import $elements, { HTMLTextLikeInputElement } from '../dom/elements'
-// eslint-disable-next-line no-duplicate-imports
+
 import type { HTMLTextLikeElement } from '../dom/elements'
 import $selection from '../dom/selection'
 import $utils from '../cypress/utils'
@@ -302,7 +302,7 @@ const parseCharsBetweenCurlyBraces = (chars: string) => {
 
 const shouldIgnoreEvent = <
   T extends KeyEventType,
-  K extends { [key in T]?: boolean }
+  K extends { [key in T]?: boolean },
 >(
   eventName: T,
   options: K,
diff --git a/packages/driver/src/cy/listeners.ts b/packages/driver/src/cy/listeners.ts
index eff5b04a354f..f013ec71c79b 100644
--- a/packages/driver/src/cy/listeners.ts
+++ b/packages/driver/src/cy/listeners.ts
@@ -13,7 +13,7 @@ type BoundEvent<K extends keyof WindowEventMap> = [
   win: Window,
   event: keyof WindowEventMap,
   fn: BoundEventHandler<K>,
-  capture?: boolean
+  capture?: boolean,
 ]
 
 let events: BoundEvent<any>[] = []
diff --git a/packages/driver/src/cy/location.ts b/packages/driver/src/cy/location.ts
index 4e22bf57a021..7fee21cc3133 100644
--- a/packages/driver/src/cy/location.ts
+++ b/packages/driver/src/cy/location.ts
@@ -15,7 +15,6 @@ const getRemoteLocationFromCrossOriginWindow = (autWindow: Window): Promise<Loca
   })
 }
 
-// eslint-disable-next-line @cypress/dev/arrow-body-multiline-braces
 export const create = (state: StateFunc) => ({
   getRemoteLocation (key?: string | undefined, win?: Window) {
     try {
diff --git a/packages/driver/src/cy/mouse.ts b/packages/driver/src/cy/mouse.ts
index c87e4b110a4b..1a2701b6d896 100644
--- a/packages/driver/src/cy/mouse.ts
+++ b/packages/driver/src/cy/mouse.ts
@@ -14,7 +14,7 @@ const debug = debugFn('cypress:driver:mouse')
 
 export type ForceEl = false | HTMLElement
 
-export type MouseCoords = { x?: number, y?: number}
+export type MouseCoords = { x?: number, y?: number }
 
 /**
  * @typedef Coords
diff --git a/packages/driver/src/cy/retries.ts b/packages/driver/src/cy/retries.ts
index 7ad67b052828..c3b2a218be6e 100644
--- a/packages/driver/src/cy/retries.ts
+++ b/packages/driver/src/cy/retries.ts
@@ -24,7 +24,6 @@ type retryOptions = {
   total?: number
 }
 
-// eslint-disable-next-line @cypress/dev/arrow-body-multiline-braces
 export const create = (Cypress: ICypress, state: StateFunc, timeout: $Cy['timeout'], clearTimeout: $Cy['clearTimeout'], whenStable: $Cy['whenStable'], finishAssertions: (err?: Error) => void) => ({
   retry (fn, options: retryOptions, log?) {
     // remove the runnables timeout because we are now in retry
diff --git a/packages/driver/src/cy/stability.ts b/packages/driver/src/cy/stability.ts
index 8e213adb3c82..714182c72972 100644
--- a/packages/driver/src/cy/stability.ts
+++ b/packages/driver/src/cy/stability.ts
@@ -2,7 +2,6 @@ import Promise from 'bluebird'
 import type { ICypress } from '../cypress'
 import type { StateFunc } from '../cypress/state'
 
-// eslint-disable-next-line @cypress/dev/arrow-body-multiline-braces
 export const create = (Cypress: ICypress, state: StateFunc) => ({
   isStable: (stable: boolean = true, event: string) => {
     if (state('isStable') === stable) {
diff --git a/packages/driver/src/cy/testConfigOverrides.ts b/packages/driver/src/cy/testConfigOverrides.ts
index 92097243f2aa..56785dfbe65a 100644
--- a/packages/driver/src/cy/testConfigOverrides.ts
+++ b/packages/driver/src/cy/testConfigOverrides.ts
@@ -12,7 +12,7 @@ type ResolvedTestConfigOverride = {
    * The list of test config overrides and the invocation details used to add helpful
    * error messaging to consumers if a test override fails validation.
    */
-  testConfigList: Array<TestConfig|ResolvedTestConfigOverride>
+  testConfigList: Array<TestConfig | ResolvedTestConfigOverride>
   /**
    * The test config overrides that will apply to the test if it passes validation.
    */
@@ -33,11 +33,11 @@ type TestConfig = {
   invocationDetails: {
     stack: Object
   }
-};
+}
 
 type ConfigOverrides = {
   env: Object | undefined
-};
+}
 
 function setConfig (testConfig: ResolvedTestConfigOverride, config, localConfigOverrides: ConfigOverrides = { env: undefined }) {
   const { testConfigList = [] } = testConfig
diff --git a/packages/driver/src/cy/timeouts.ts b/packages/driver/src/cy/timeouts.ts
index f076a62b0ec9..1cd4b536c5b8 100644
--- a/packages/driver/src/cy/timeouts.ts
+++ b/packages/driver/src/cy/timeouts.ts
@@ -2,7 +2,6 @@ import _ from 'lodash'
 import $errUtils from '../cypress/error_utils'
 import type { StateFunc } from '../cypress/state'
 
-// eslint-disable-next-line @cypress/dev/arrow-body-multiline-braces
 export const create = (state: StateFunc) => ({
   timeout (ms?: number, delta: boolean = false) {
     const runnable = state('runnable')
diff --git a/packages/driver/src/cy/timers.ts b/packages/driver/src/cy/timers.ts
index 9c55ad2ab7ee..c935dda2a42c 100644
--- a/packages/driver/src/cy/timers.ts
+++ b/packages/driver/src/cy/timers.ts
@@ -1,6 +1,5 @@
 import type { ICypress } from '../cypress'
 
-// eslint-disable-next-line @cypress/dev/arrow-body-multiline-braces
 export const create = (Cypress: ICypress) => ({
   reset () {
     return Cypress.action('app:timers:reset')
diff --git a/packages/driver/src/cy/top_attr_guards.ts b/packages/driver/src/cy/top_attr_guards.ts
index cb98268d6c3a..5afc052574d5 100644
--- a/packages/driver/src/cy/top_attr_guards.ts
+++ b/packages/driver/src/cy/top_attr_guards.ts
@@ -2,7 +2,7 @@ import $elements from '../dom/elements'
 
 const invalidTargets = new Set(['_parent', '_top'])
 
-export type GuardedEvent = Event & {target: HTMLFormElement | HTMLAnchorElement}
+export type GuardedEvent = Event & { target: HTMLFormElement | HTMLAnchorElement }
 
 /**
  * Guard against target being set to something other than blank or self, while trying
@@ -12,7 +12,7 @@ export function handleInvalidEventTarget (e: GuardedEvent) {
   handleInvalidTarget(e.target)
 }
 
-export type GuardedAnchorEvent = Event & {target: HTMLAnchorElement}
+export type GuardedAnchorEvent = Event & { target: HTMLAnchorElement }
 
 /**
  * We need to listen to all click events on the window, but only handle anchor elements,
diff --git a/packages/driver/src/cy/xhrs.ts b/packages/driver/src/cy/xhrs.ts
index 157ca472b2f9..5ee94174753a 100644
--- a/packages/driver/src/cy/xhrs.ts
+++ b/packages/driver/src/cy/xhrs.ts
@@ -23,7 +23,6 @@ const xhrNotWaitedOnByIndex = (state: StateFunc, alias: string, index: number, p
   }
 }
 
-// eslint-disable-next-line @cypress/dev/arrow-body-multiline-braces
 export const create = (state: StateFunc) => ({
   getIndexedXhrByAlias (alias: string, index: number) {
     let prop
diff --git a/packages/driver/src/cypress/command_queue.ts b/packages/driver/src/cypress/command_queue.ts
index 09ac6e460bf2..7d8db9ea4e96 100644
--- a/packages/driver/src/cypress/command_queue.ts
+++ b/packages/driver/src/cypress/command_queue.ts
@@ -295,8 +295,6 @@ export class CommandQueue extends Queue<$Command> {
           command.set('queryFn', ret)
           ret = retryQuery(command, ret, this.cy)
         }
-      } catch (err) {
-        throw err
       } finally {
         // always remove this listener
         Cypress.removeListener('command:enqueued', commandEnqueued)
diff --git a/packages/driver/src/cypress/cy.ts b/packages/driver/src/cypress/cy.ts
index 8f82d49b298f..1ca24948e51c 100644
--- a/packages/driver/src/cypress/cy.ts
+++ b/packages/driver/src/cypress/cy.ts
@@ -1,4 +1,3 @@
-/* eslint-disable prefer-rest-params */
 import _ from 'lodash'
 import Promise from 'bluebird'
 import debugFn from 'debug'
@@ -81,7 +80,6 @@ const setTopOnError = function (Cypress, cy: $Cy) {
     return
   }
 
-  // eslint-disable-next-line @cypress/dev/arrow-body-multiline-braces
   const onTopError = (handlerType) => (event) => {
     const { originalErr, err, promise } = $errUtils.errorFromUncaughtEvent(handlerType, event) as ErrorFromProjectRejectionEvent
 
@@ -151,6 +149,7 @@ export class $Cy extends EventEmitter2 implements ITimeouts, IStability, IAssert
     keyboard: Keyboard
     mouse: Mouse
   }
+
   queue: CommandQueue
 
   timeout: ITimeouts['timeout']
@@ -1088,7 +1087,6 @@ export class $Cy extends EventEmitter2 implements ITimeouts, IStability, IAssert
     const cy = this
 
     bindToListeners(contentWindow, {
-      // eslint-disable-next-line @cypress/dev/arrow-body-multiline-braces
       onError: (handlerType) => (event) => {
         const { originalErr, err, promise } = $errUtils.errorFromUncaughtEvent(handlerType, event) as ErrorFromProjectRejectionEvent
 
diff --git a/packages/driver/src/cypress/error_messages.ts b/packages/driver/src/cypress/error_messages.ts
index 34e998fe8d6b..18ae4aae6a42 100644
--- a/packages/driver/src/cypress/error_messages.ts
+++ b/packages/driver/src/cypress/error_messages.ts
@@ -1373,7 +1373,7 @@ export default {
         If you're trying to send a \`x-www-form-urlencoded\` request then pass either a string or object literal to the \`body\` property.`,
       docsUrl: 'https://on.cypress.io/request',
     },
-    /* eslint-disable indent */
+
     loading_failed (obj) {
       return {
         message: cyStripIndent(`\
@@ -1462,7 +1462,7 @@ export default {
         docsUrl: 'https://on.cypress.io/request',
       }
     },
-    /* eslint-enable indent */
+
     url_missing: {
       message: `${cmd('request')} requires a \`url\`. You did not provide a \`url\`.`,
       docsUrl: 'https://on.cypress.io/request',
diff --git a/packages/driver/src/cypress/log.ts b/packages/driver/src/cypress/log.ts
index 2bf8c360733b..ad5b3636c8a0 100644
--- a/packages/driver/src/cypress/log.ts
+++ b/packages/driver/src/cypress/log.ts
@@ -101,7 +101,7 @@ export const LogUtils = {
     return _
     .chain(tests)
     .flatMap((test) => test.prevAttempts ? [test, ...test.prevAttempts] : [test])
-    .flatMap<{id: string}>((tests) => [].concat(tests.agents, tests.routes, tests.commands))
+    .flatMap<{ id: string }>((tests) => [].concat(tests.agents, tests.routes, tests.commands))
     .compact()
     .union([{ id: '0' }])
     // id is a string in the form of 'log-origin-#', grab the number off the end.
diff --git a/packages/driver/src/cypress/mocha.ts b/packages/driver/src/cypress/mocha.ts
index 125c36672bba..445b29533b20 100644
--- a/packages/driver/src/cypress/mocha.ts
+++ b/packages/driver/src/cypress/mocha.ts
@@ -1,4 +1,3 @@
-/* eslint-disable prefer-rest-params */
 import _ from 'lodash'
 import $errUtils, { CypressError } from './error_utils'
 import $utils from './utils'
@@ -450,7 +449,7 @@ function getNormalizedRetriesConfig (Cypress: Cypress.Cypress): NormalizedRetrie
     }
   }
 
-  const enablementKey: 'openMode'|'runMode' = isInOpenMode ? 'openMode' : 'runMode'
+  const enablementKey: 'openMode' | 'runMode' = isInOpenMode ? 'openMode' : 'runMode'
   const enablementValue = retriesConfig[enablementKey]
 
   // if retries are explicitly disabled, return an empty object
diff --git a/packages/driver/src/cypress/runner.ts b/packages/driver/src/cypress/runner.ts
index aa26ca18f9a4..01a52c832434 100644
--- a/packages/driver/src/cypress/runner.ts
+++ b/packages/driver/src/cypress/runner.ts
@@ -1248,7 +1248,6 @@ export default {
       return foundTest
     }
 
-    // eslint-disable-next-line @cypress/dev/arrow-body-multiline-braces
     const onSpecError = (handlerType: HandlerType) => (event) => {
       let { originalErr, err } = $errUtils.errorFromUncaughtEvent(handlerType, event)
 
diff --git a/packages/driver/src/dom/coordinates.ts b/packages/driver/src/dom/coordinates.ts
index 670e8da325d7..f0c7ee86acf2 100644
--- a/packages/driver/src/dom/coordinates.ts
+++ b/packages/driver/src/dom/coordinates.ts
@@ -189,7 +189,6 @@ const getCoordsByPosition = (
   yPosition: 'top' | 'center' | 'bottom' = 'center',
 ) => {
   const getLeft = () => {
-    /* eslint-disable default-case */
     switch (xPosition) {
       case 'left': return Math.ceil(left)
       case 'center': return Math.floor(left)
@@ -205,8 +204,6 @@ const getCoordsByPosition = (
     }
   }
 
-  /* eslint-disable default-case */
-
   // returning x/y here because this is
   // about the target position we want
   // to fire the event at based on what
diff --git a/packages/driver/src/dom/elements/find.ts b/packages/driver/src/dom/elements/find.ts
index caceed6d7295..ea63fc78e60f 100644
--- a/packages/driver/src/dom/elements/find.ts
+++ b/packages/driver/src/dom/elements/find.ts
@@ -303,7 +303,7 @@ export const getContainsSelector = (text, filter = '', options: {
   matchCase?: boolean
 } = {}) => {
   if (_.isRegExp(text) && options.matchCase === false && !text.flags.includes('i')) {
-    text = new RegExp(text.source, text.flags + 'i') // eslint-disable-line prefer-template
+    text = new RegExp(text.source, text.flags + 'i')
   }
 
   const escapedText = _.isString(text) ? JSON.stringify(text).slice(1, -1) : text.toString()
diff --git a/packages/driver/src/util/serialization/log.ts b/packages/driver/src/util/serialization/log.ts
index 1769bfd1be22..9b63cf88e42f 100644
--- a/packages/driver/src/util/serialization/log.ts
+++ b/packages/driver/src/util/serialization/log.ts
@@ -413,7 +413,7 @@ export const preprocessLogForSerialization = (logAttrs) => {
  * @returns a reified version of what a log is supposed to look like in Cypress
  */
 export const reifyLogFromSerialization = (logAttrs) => {
-  let { snapshots, ... logAttrsRest } = logAttrs
+  let { snapshots, ...logAttrsRest } = logAttrs
 
   // if the protocol is enabled, we don't need to reify the snapshot since the snapshot was serializable coming into the primary instance of Cypress.
   // also make sure numTestsKeptInMemory is 0, otherwise we will want to preprocess the snapshot
diff --git a/packages/driver/types/cypress/log.d.ts b/packages/driver/types/cypress/log.d.ts
index 72875cadc405..851d29b0e805 100644
--- a/packages/driver/types/cypress/log.d.ts
+++ b/packages/driver/types/cypress/log.d.ts
@@ -20,8 +20,8 @@ declare namespace Cypress {
   }
 
   type Snapshot = {
-    body?: {get: () => any}
-    htmlAttrs?: {[key: string]: any}
+    body?: { get: () => any }
+    htmlAttrs?: { [key: string]: any }
     name?: string
   }
 

From 007aae2d6da757138ea438200c63906b8f2f732c Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 09:51:28 -0500
Subject: [PATCH 042/127] eslint cleanup general

---
 eslint.config.ts                   | 21 ++++++++++++---------
 npm/puppeteer/eslint.config.ts     | 11 +----------
 packages/data-context/package.json |  2 +-
 3 files changed, 14 insertions(+), 20 deletions(-)

diff --git a/eslint.config.ts b/eslint.config.ts
index 7061ff87e769..77049cd76ef6 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -31,6 +31,10 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
     languageOptions: {
       parserOptions: {
         parser: ts.parser,
+        projectService: true,
+      },
+      globals: {
+        ...globals.node,
       },
     },
   },
@@ -149,6 +153,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       'no-unsafe-finally': 'off',
       'no-async-promise-executor': 'off',
       'no-unsafe-optional-chaining': 'off',
+      'prefer-spread': 'warn',
 
       '@typescript-eslint/no-unused-expressions': 'off',
       '@typescript-eslint/no-require-imports': 'off',
@@ -173,7 +178,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       'cypress/no-unnecessary-waiting': 'off',
       'cypress/unsafe-to-chain-command': 'off',
       'cypress/no-async-tests': 'off',
-      'cypress/no-assigning-return-values': 'warn',
+      'cypress/no-assigning-return-values': 'off',
     },
   },
 
@@ -181,16 +186,18 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
   {
     rules: {
       'mocha/no-mocha-arrows': 'off',
-      'mocha/no-setup-in-describe': 'off', //warn
-      'mocha/max-top-level-suites': 'off', // warn
-      'mocha/no-top-level-hooks': 'off', //warn
-      'mocha/no-identical-title': 'off', // warn
+      'mocha/no-setup-in-describe': 'off',
+      'mocha/max-top-level-suites': 'off',
+      'mocha/no-top-level-hooks': 'off',
+      'mocha/no-identical-title': 'off',
       'mocha/consistent-spacing-between-blocks': 'off',
       'mocha/no-global-tests': 'off',
       'mocha/no-sibling-hooks': 'off',
       'mocha/no-skipped-tests': 'off',
       'mocha/no-exports': 'off',
       'mocha/no-async-describe': 'off',
+      'mocha/no-return-and-callback': 'off',
+      'mocha/no-pending-tests': 'off',
     },
   },
 
@@ -239,10 +246,6 @@ export default ts.config(
   {
     files: ['**/*.{ts,js}'],
     languageOptions: {
-      parserOptions: {
-        projectService: true,
-        tsconfigRootDir: path.join(__dirname, './ts'),
-      },
       globals: {
         ...globals.node,
       },
diff --git a/npm/puppeteer/eslint.config.ts b/npm/puppeteer/eslint.config.ts
index 9b2c6c680b93..8b9636ce36e2 100644
--- a/npm/puppeteer/eslint.config.ts
+++ b/npm/puppeteer/eslint.config.ts
@@ -1,12 +1,3 @@
 import { baseConfig } from '../../eslint.config'
 
-export default [
-  ...baseConfig,
-  {
-    languageOptions: {
-      globals: {
-        require: 'readonly',
-      },
-    },
-  },
-]
+export default baseConfig
diff --git a/packages/data-context/package.json b/packages/data-context/package.json
index 6664b048d8bf..99c1c641ee50 100644
--- a/packages/data-context/package.json
+++ b/packages/data-context/package.json
@@ -10,7 +10,7 @@
     "check-ts": "tsc --noEmit && yarn -s tslint",
     "clean": "rimraf --glob \"./{src,test}/**/*.js\"",
     "clean-deps": "rimraf node_modules",
-    "lint": "eslint --ext .js,.ts,.json, .",
+    "lint": "eslint .",
     "test": "yarn test-unit",
     "test-unit": "mocha -r @packages/ts/register --config ./test/.mocharc.js --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
     "tslint": "tslint --config ../ts/tslint.json --project ."

From 85be1363023321938524357e53a0216f46e2eef9 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 09:59:39 -0500
Subject: [PATCH 043/127] packages/electron

---
 packages/electron/.eslintignore    |  5 -----
 packages/electron/eslint.config.ts | 13 +++++++++++++
 packages/electron/package.json     |  2 +-
 3 files changed, 14 insertions(+), 6 deletions(-)
 delete mode 100644 packages/electron/.eslintignore
 create mode 100644 packages/electron/eslint.config.ts

diff --git a/packages/electron/.eslintignore b/packages/electron/.eslintignore
deleted file mode 100644
index 79afe972da7d..000000000000
--- a/packages/electron/.eslintignore
+++ /dev/null
@@ -1,5 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
\ No newline at end of file
diff --git a/packages/electron/eslint.config.ts b/packages/electron/eslint.config.ts
new file mode 100644
index 000000000000..83e393538748
--- /dev/null
+++ b/packages/electron/eslint.config.ts
@@ -0,0 +1,13 @@
+import { baseConfig } from '../../eslint.config'
+
+export default [
+  ...baseConfig, {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['lib/*.js', 'app/*.js', 'index.js', 'test/*.js', 'eslint.config.ts'],
+        },
+      },
+    },
+  },
+]
diff --git a/packages/electron/package.json b/packages/electron/package.json
index 0c319335656a..619826b2f135 100644
--- a/packages/electron/package.json
+++ b/packages/electron/package.json
@@ -7,7 +7,7 @@
     "build-binary": "node ./bin/cypress-electron --install",
     "clean-deps": "rimraf node_modules",
     "postinstall": "echo '@packages/electron needs: yarn build'",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "start": "./bin/cypress-electron",
     "test": "yarn test-unit",
     "test-debug": "yarn test-unit --inspect-brk=5566",

From e2ed7793f5e9ca0d5c983db544cee1143a789320 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 10:03:57 -0500
Subject: [PATCH 044/127] packages/errors

---
 packages/errors/.eslintignore                 |  1 -
 packages/errors/eslint.config.ts              | 17 +++++
 packages/errors/package.json                  |  2 +-
 packages/errors/src/errors.ts                 | 67 +++++++++----------
 packages/errors/src/stackUtils.ts             |  2 +-
 .../test/support/error-comparison-tool.ts     |  6 +-
 .../test/unit/visualSnapshotErrors_spec.ts    |  4 +-
 packages/errors/tsconfig.json                 |  2 +
 8 files changed, 58 insertions(+), 43 deletions(-)
 delete mode 100644 packages/errors/.eslintignore
 create mode 100644 packages/errors/eslint.config.ts

diff --git a/packages/errors/.eslintignore b/packages/errors/.eslintignore
deleted file mode 100644
index d5857ea71fbd..000000000000
--- a/packages/errors/.eslintignore
+++ /dev/null
@@ -1 +0,0 @@
-**/tsconfig.json
diff --git a/packages/errors/eslint.config.ts b/packages/errors/eslint.config.ts
new file mode 100644
index 000000000000..cb97f9b3e777
--- /dev/null
+++ b/packages/errors/eslint.config.ts
@@ -0,0 +1,17 @@
+import { baseConfig } from '../../eslint.config'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['__snapshot-html__/**/*'],
+  },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts', 'index.js'],
+        },
+      },
+    },
+  },
+]
diff --git a/packages/errors/package.json b/packages/errors/package.json
index c5098dd2d383..ede4ced44859 100644
--- a/packages/errors/package.json
+++ b/packages/errors/package.json
@@ -11,7 +11,7 @@
     "clean": "rimraf ./src/*.js ./src/**/*.js ./src/**/**/*.js ./test/**/*.js || echo 'cleaned'",
     "clean-deps": "rimraf node_modules",
     "comparison": "node -r @packages/ts/register test/support/error-comparison-tool.ts",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "test": "yarn test-unit",
     "test-electron": "HTML_IMAGE_CONVERSION=1 xvfb-maybe electron --no-sandbox ./node_modules/.bin/_mocha",
     "pretest-unit": "yarn clean",
diff --git a/packages/errors/src/errors.ts b/packages/errors/src/errors.ts
index 9df295c5ed1e..078def067a8c 100644
--- a/packages/errors/src/errors.ts
+++ b/packages/errors/src/errors.ts
@@ -1,6 +1,6 @@
 import AU from 'ansi_up'
 import os from 'os'
-/* eslint-disable no-console */
+
 import chalk from 'chalk'
 import _ from 'lodash'
 import path from 'path'
@@ -155,7 +155,7 @@ export const AllCypressErrors = {
   CLOUD_CANCEL_SKIPPED_SPEC: () => {
     return errTemplate`${fmt.off(`\n  `)}This spec and its tests were skipped because the run has been canceled.`
   },
-  CLOUD_API_RESPONSE_FAILED_RETRYING: (arg1: {tries: number, delayMs: number, response: Error}) => {
+  CLOUD_API_RESPONSE_FAILED_RETRYING: (arg1: { tries: number, delayMs: number, response: Error }) => {
     const time = pluralize('time', arg1.tries)
     const delay = humanTime.long(arg1.delayMs, false)
 
@@ -167,9 +167,8 @@ export const AllCypressErrors = {
         We will retry ${fmt.off(arg1.tries)} more ${fmt.off(time)} in ${fmt.off(delay)}...
         `
     /* Because of fmt.listFlags() and fmt.listItems() */
-    /* eslint-disable indent */
   },
-  CLOUD_CANNOT_PROCEED_IN_PARALLEL: (arg1: {flags: any, response: Error}) => {
+  CLOUD_CANNOT_PROCEED_IN_PARALLEL: (arg1: { flags: any, response: Error }) => {
     return errTemplate`\
         We encountered an unexpected error communicating with our servers.
 
@@ -182,7 +181,7 @@ export const AllCypressErrors = {
       ciBuildId: '--ciBuildId',
     })}`
   },
-  CLOUD_CANNOT_PROCEED_IN_SERIAL: (arg1: {flags: any, response: Error}) => {
+  CLOUD_CANNOT_PROCEED_IN_SERIAL: (arg1: { flags: any, response: Error }) => {
     return errTemplate`\
         We encountered an unexpected error communicating with our servers.
 
@@ -195,7 +194,7 @@ export const AllCypressErrors = {
       ciBuildId: '--ciBuildId',
     })}`
   },
-  CLOUD_UNKNOWN_INVALID_REQUEST: (arg1: {flags: any, response: Error}) => {
+  CLOUD_UNKNOWN_INVALID_REQUEST: (arg1: { flags: any, response: Error }) => {
     return errTemplate`\
         We encountered an unexpected error communicating with our servers.
 
@@ -210,7 +209,7 @@ export const AllCypressErrors = {
       ciBuildId: '--ciBuildId',
     })}`
   },
-  CLOUD_UNKNOWN_CREATE_RUN_WARNING: (arg1: {props?: any, message: string}) => {
+  CLOUD_UNKNOWN_CREATE_RUN_WARNING: (arg1: { props?: any, message: string }) => {
     if (!Object.keys(arg1.props).length) {
       return errTemplate`\
           Warning from Cypress Cloud: ${fmt.highlight(arg1.message)}
@@ -223,7 +222,7 @@ export const AllCypressErrors = {
         Details:
         ${fmt.meta(arg1.props)}`
   },
-  CLOUD_STALE_RUN: (arg1: {runUrl: string, [key: string]: any}) => {
+  CLOUD_STALE_RUN: (arg1: { runUrl: string, [key: string]: any }) => {
     return errTemplate`\
         You are attempting to pass the ${fmt.flag(`--parallel`)} flag to a run that was completed over 24 hours ago.
 
@@ -240,7 +239,7 @@ export const AllCypressErrors = {
 
         https://on.cypress.io/stale-run`
   },
-  CLOUD_ALREADY_COMPLETE: (props: {runUrl: string}) => {
+  CLOUD_ALREADY_COMPLETE: (props: { runUrl: string }) => {
     return errTemplate`\
         The run you are attempting to access is already complete and will not accept new groups.
 
@@ -257,7 +256,7 @@ export const AllCypressErrors = {
 
         https://on.cypress.io/already-complete`
   },
-  CLOUD_PARALLEL_REQUIRED: (arg1: {runUrl: string}) => {
+  CLOUD_PARALLEL_REQUIRED: (arg1: { runUrl: string }) => {
     return errTemplate`\
         You did not pass the ${fmt.flag(`--parallel`)} flag, but this run's group was originally created with the --parallel flag.
 
@@ -274,7 +273,7 @@ export const AllCypressErrors = {
 
         https://on.cypress.io/parallel-required`
   },
-  CLOUD_PARALLEL_DISALLOWED: (arg1: {runUrl: string}) => {
+  CLOUD_PARALLEL_DISALLOWED: (arg1: { runUrl: string }) => {
     return errTemplate`\
         You passed the ${fmt.flag(`--parallel`)} flag, but this run group was originally created without the --parallel flag.
 
@@ -290,7 +289,7 @@ export const AllCypressErrors = {
 
         https://on.cypress.io/parallel-disallowed`
   },
-  CLOUD_PARALLEL_GROUP_PARAMS_MISMATCH: (arg1: {runUrl: string, parameters: any, payload: any }) => {
+  CLOUD_PARALLEL_GROUP_PARAMS_MISMATCH: (arg1: { runUrl: string, parameters: any, payload: any }) => {
     let params: any = arg1.parameters
 
     if (arg1.payload?.differentParams) {
@@ -344,7 +343,7 @@ export const AllCypressErrors = {
 
         https://on.cypress.io/parallel-group-params-mismatch`
   },
-  CLOUD_RUN_GROUP_NAME_NOT_UNIQUE: (arg1: {runUrl: string, ciBuildId?: string | null}) => {
+  CLOUD_RUN_GROUP_NAME_NOT_UNIQUE: (arg1: { runUrl: string, ciBuildId?: string | null }) => {
     return errTemplate`\
         You passed the ${fmt.flag(`--group`)} flag, but this group name has already been used for this run.
 
@@ -362,7 +361,7 @@ export const AllCypressErrors = {
 
         https://on.cypress.io/run-group-name-not-unique`
   },
-  CLOUD_AUTO_CANCEL_NOT_AVAILABLE_IN_PLAN: (arg1: {link: string}) => {
+  CLOUD_AUTO_CANCEL_NOT_AVAILABLE_IN_PLAN: (arg1: { link: string }) => {
     return errTemplate`\
       ${fmt.highlightSecondary(`Auto Cancellation`)} is not included under your current billing plan.
 
@@ -370,7 +369,7 @@ export const AllCypressErrors = {
 
       ${fmt.off(arg1.link)}`
   },
-  CLOUD_AUTO_CANCEL_MISMATCH: (arg1: {runUrl: string}) => {
+  CLOUD_AUTO_CANCEL_MISMATCH: (arg1: { runUrl: string }) => {
     return errTemplate`\
         You passed the ${fmt.flag(`--auto-cancel-after-failures`)} flag, but this run originally started with a different value for the ${fmt.flag(`--auto-cancel-after-failures`)} flag.
 
@@ -442,7 +441,6 @@ export const AllCypressErrors = {
         The --ci-build-id flag is used to either group or parallelize multiple runs together.
 
         https://on.cypress.io/incorrect-ci-build-id-usage`
-    /* eslint-enable indent */
   },
   RECORD_KEY_MISSING: () => {
     return errTemplate`\
@@ -491,7 +489,7 @@ export const AllCypressErrors = {
 
         https://on.cypress.io/recording-project-runs`
   },
-  CLOUD_INVALID_RUN_REQUEST: (arg1: {message: string, errors: string[], object: object}) => {
+  CLOUD_INVALID_RUN_REQUEST: (arg1: { message: string, errors: string[], object: object }) => {
     return errTemplate`\
         Recording this run failed. The request was invalid.
 
@@ -629,7 +627,7 @@ export const AllCypressErrors = {
         return AllCypressErrors.CLOUD_PROTOCOL_UPLOAD_NETWORK_FAILURE(firstError as Error & { url: string })
       }
 
-      return AllCypressErrors.CLOUD_PROTOCOL_UPLOAD_HTTP_FAILURE(error.errors[0] as Error & { url: string, status: number, statusText: string, responseBody: string})
+      return AllCypressErrors.CLOUD_PROTOCOL_UPLOAD_HTTP_FAILURE(error.errors[0] as Error & { url: string, status: number, statusText: string, responseBody: string })
     }
 
     let systemErr = error.errors.find((err) => {
@@ -934,7 +932,7 @@ export const AllCypressErrors = {
 
       Instead the value was: ${fmt.stringify(value)}`
   },
-  RENAMED_CONFIG_OPTION: (arg1: {name: string, newName: string}) => {
+  RENAMED_CONFIG_OPTION: (arg1: { name: string, newName: string }) => {
     return errTemplate`\
         The ${fmt.highlight(arg1.name)} configuration option you have supplied has been renamed.
 
@@ -955,7 +953,7 @@ export const AllCypressErrors = {
         This server has been configured as your ${fmt.highlight(`baseUrl`)}, and tests will likely fail if it is not running.`
   },
   // TODO: test this
-  CANNOT_CONNECT_BASE_URL_RETRYING: (arg1: {attempt: number, baseUrl: string, remaining: number, delay: number}) => {
+  CANNOT_CONNECT_BASE_URL_RETRYING: (arg1: { attempt: number, baseUrl: string, remaining: number, delay: number }) => {
     switch (arg1.attempt) {
       case 1:
         return errTemplate`\
@@ -973,7 +971,7 @@ export const AllCypressErrors = {
     }
   },
   // TODO: test this
-  INVALID_REPORTER_NAME: (arg1: {name: string, paths: string[], error: Error}) => {
+  INVALID_REPORTER_NAME: (arg1: { name: string, paths: string[], error: Error }) => {
     return errTemplate`\
         Error loading the reporter: ${fmt.highlight(arg1.name)}
 
@@ -1019,7 +1017,7 @@ export const AllCypressErrors = {
 
         https://on.cypress.io/installing-cypress`
   },
-  FREE_PLAN_EXCEEDS_MONTHLY_PRIVATE_TESTS: (arg1: {link: string, usedTestsMessage: string, limit: number}) => {
+  FREE_PLAN_EXCEEDS_MONTHLY_PRIVATE_TESTS: (arg1: { link: string, usedTestsMessage: string, limit: number }) => {
     return errTemplate`\
         You've exceeded the limit of private test results under your free plan this month. ${getUsedTestsMessage(arg1.limit, arg1.usedTestsMessage)}
 
@@ -1027,7 +1025,7 @@ export const AllCypressErrors = {
 
         ${fmt.off(arg1.link)}`
   },
-  FREE_PLAN_IN_GRACE_PERIOD_EXCEEDS_MONTHLY_PRIVATE_TESTS: (arg1: {link: string, usedTestsMessage: string, gracePeriodMessage: string, limit: number}) => {
+  FREE_PLAN_IN_GRACE_PERIOD_EXCEEDS_MONTHLY_PRIVATE_TESTS: (arg1: { link: string, usedTestsMessage: string, gracePeriodMessage: string, limit: number }) => {
     return errTemplate`\
         You've exceeded the limit of private test results under your free plan this month. ${getUsedTestsMessage(arg1.limit, arg1.usedTestsMessage)}
 
@@ -1035,7 +1033,7 @@ export const AllCypressErrors = {
 
         ${fmt.off(arg1.link)}`
   },
-  PAID_PLAN_EXCEEDS_MONTHLY_PRIVATE_TESTS: (arg1: {link: string, usedTestsMessage: string, limit: number}) => {
+  PAID_PLAN_EXCEEDS_MONTHLY_PRIVATE_TESTS: (arg1: { link: string, usedTestsMessage: string, limit: number }) => {
     return errTemplate`\
         You've exceeded the limit of private test results under your current billing plan this month. ${getUsedTestsMessage(arg1.limit, arg1.usedTestsMessage)}
 
@@ -1043,7 +1041,7 @@ export const AllCypressErrors = {
 
         ${fmt.off(arg1.link)}`
   },
-  FREE_PLAN_EXCEEDS_MONTHLY_TESTS: (arg1: {link: string, usedTestsMessage: string, limit: number}) => {
+  FREE_PLAN_EXCEEDS_MONTHLY_TESTS: (arg1: { link: string, usedTestsMessage: string, limit: number }) => {
     return errTemplate`\
         You've exceeded the limit of test results under your free plan this month. ${getUsedTestsMessage(arg1.limit, arg1.usedTestsMessage)}
 
@@ -1051,7 +1049,7 @@ export const AllCypressErrors = {
 
         ${fmt.off(arg1.link)}`
   },
-  FREE_PLAN_IN_GRACE_PERIOD_EXCEEDS_MONTHLY_TESTS: (arg1: {link: string, usedTestsMessage: string, gracePeriodMessage: string, limit: number}) => {
+  FREE_PLAN_IN_GRACE_PERIOD_EXCEEDS_MONTHLY_TESTS: (arg1: { link: string, usedTestsMessage: string, gracePeriodMessage: string, limit: number }) => {
     return errTemplate`\
         You've exceeded the limit of test results under your free plan this month. ${getUsedTestsMessage(arg1.limit, arg1.usedTestsMessage)}
 
@@ -1061,7 +1059,7 @@ export const AllCypressErrors = {
 
         ${fmt.off(arg1.link)}`
   },
-  PLAN_EXCEEDS_MONTHLY_TESTS: (arg1: {link: string, planType: string, usedTestsMessage: string, limit: number}) => {
+  PLAN_EXCEEDS_MONTHLY_TESTS: (arg1: { link: string, planType: string, usedTestsMessage: string, limit: number }) => {
     return errTemplate`\
         You've exceeded the limit of test results under your ${fmt.highlight(arg1.planType)} billing plan this month. ${getUsedTestsMessage(arg1.limit, arg1.usedTestsMessage)}
 
@@ -1069,7 +1067,7 @@ export const AllCypressErrors = {
 
         ${fmt.off(arg1.link)}`
   },
-  FREE_PLAN_IN_GRACE_PERIOD_PARALLEL_FEATURE: (arg1: {link: string, gracePeriodMessage: string}) => {
+  FREE_PLAN_IN_GRACE_PERIOD_PARALLEL_FEATURE: (arg1: { link: string, gracePeriodMessage: string }) => {
     return errTemplate`\
         ${fmt.highlightSecondary(`Parallelization`)} is not included under your free plan.
 
@@ -1077,7 +1075,7 @@ export const AllCypressErrors = {
 
         ${fmt.off(arg1.link)}`
   },
-  PARALLEL_FEATURE_NOT_AVAILABLE_IN_PLAN: (arg1: {link: string}) => {
+  PARALLEL_FEATURE_NOT_AVAILABLE_IN_PLAN: (arg1: { link: string }) => {
     return errTemplate`\
         ${fmt.highlightSecondary(`Parallelization`)} is not included under your current billing plan.
 
@@ -1085,7 +1083,7 @@ export const AllCypressErrors = {
 
         ${fmt.off(arg1.link)}`
   },
-  PLAN_IN_GRACE_PERIOD_RUN_GROUPING_FEATURE_USED: (arg1: {link: string, gracePeriodMessage: string}) => {
+  PLAN_IN_GRACE_PERIOD_RUN_GROUPING_FEATURE_USED: (arg1: { link: string, gracePeriodMessage: string }) => {
     return errTemplate`\
         ${fmt.highlightSecondary(`Grouping`)} is not included under your free plan.
 
@@ -1093,7 +1091,7 @@ export const AllCypressErrors = {
 
         ${fmt.off(arg1.link)}`
   },
-  RUN_GROUPING_FEATURE_NOT_AVAILABLE_IN_PLAN: (arg1: {link: string}) => {
+  RUN_GROUPING_FEATURE_NOT_AVAILABLE_IN_PLAN: (arg1: { link: string }) => {
     return errTemplate`\
         ${fmt.highlightSecondary(`Grouping`)} is not included under your current billing plan.
 
@@ -1140,7 +1138,7 @@ export const AllCypressErrors = {
 
         CYPRESS_INTERNAL_ENV is reserved for internal use and cannot be modified.`
   },
-  CDP_VERSION_TOO_OLD: (minimumVersion: string, currentVersion: {major: number, minor: string | number}) => {
+  CDP_VERSION_TOO_OLD: (minimumVersion: string, currentVersion: { major: number, minor: string | number }) => {
     const phrase = currentVersion.major !== 0
       ? fmt.highlight(`${currentVersion.major}.${currentVersion.minor}`)
       : fmt.off('an older version')
@@ -1249,7 +1247,7 @@ export const AllCypressErrors = {
   },
   // TODO: verify configFile is absolute path
   // TODO: make this relative path, not absolute
-  EXPERIMENTAL_COMPONENT_TESTING_REMOVED: (arg1: {configFile: string}) => {
+  EXPERIMENTAL_COMPONENT_TESTING_REMOVED: (arg1: { configFile: string }) => {
     return errTemplate`\
         The ${fmt.highlight('experimentalComponentTesting')} configuration option was removed in ${fmt.cypressVersion(`7.0.0`)}.
 
@@ -1879,7 +1877,6 @@ export const AllCypressErrors = {
   },
 } as const
 
-// eslint-disable-next-line @typescript-eslint/no-unused-vars
 const _typeCheck: Record<keyof AllCypressErrorObj, (...args: any[]) => ErrTemplateResult> = AllCypressErrors
 
 type AllCypressErrorObj = typeof AllCypressErrors
@@ -1966,7 +1963,7 @@ interface GenericError extends Error {
   [key: string]: any
 }
 
-export const cloneErr = function (err: CypressError | GenericError, options: {html?: boolean} = {}) {
+export const cloneErr = function (err: CypressError | GenericError, options: { html?: boolean } = {}) {
   _.defaults(options, {
     html: false,
   })
diff --git a/packages/errors/src/stackUtils.ts b/packages/errors/src/stackUtils.ts
index 4f4d5b0ab75e..27cd02ee1efe 100644
--- a/packages/errors/src/stackUtils.ts
+++ b/packages/errors/src/stackUtils.ts
@@ -3,7 +3,7 @@ import type { ErrorLike } from './errorTypes'
 
 export const stackLineRegex = /^\s*(at )?.*@?(?:\(?.*(?::\d+:\d+|<unknown>|\[native code\])+\)?)$/
 
-type MessageLines = [string[], string[]] & {messageEnded?: boolean}
+type MessageLines = [string[], string[]] & { messageEnded?: boolean }
 
 // returns tuple of [message, stack]
 export const splitStack = (stack: string) => {
diff --git a/packages/errors/test/support/error-comparison-tool.ts b/packages/errors/test/support/error-comparison-tool.ts
index 14a8062ec03d..dbd27509363a 100644
--- a/packages/errors/test/support/error-comparison-tool.ts
+++ b/packages/errors/test/support/error-comparison-tool.ts
@@ -140,13 +140,13 @@ app.get('/base-list', async (req, res) => {
   }
 })
 
-app.get<{offset: number}>('/load-more/:offset', async (req, res) => {
+app.get<{ offset: number }>('/load-more/:offset', async (req, res) => {
   const rows = await getRows(req.params.offset)
 
   res.send(rows)
 })
 
-app.get<{offset: number}>('/load-more-base/:offset', async (req, res) => {
+app.get<{ offset: number }>('/load-more-base/:offset', async (req, res) => {
   const rows = await getRows(req.params.offset, true)
 
   res.send(rows)
@@ -166,7 +166,7 @@ app.get('/looks-good/:name', async (req, res) => {
   }
 })
 
-app.get<{name: string, type: string}>('/html/:name/:type', async (req, res) => {
+app.get<{ name: string, type: string }>('/html/:name/:type', async (req, res) => {
   const pathToFile = path.join(ERRORS_DIR, req.params.type, `${req.params.name}.html`)
 
   try {
diff --git a/packages/errors/test/unit/visualSnapshotErrors_spec.ts b/packages/errors/test/unit/visualSnapshotErrors_spec.ts
index 88d8fa118b84..e5c2e5ea9989 100644
--- a/packages/errors/test/unit/visualSnapshotErrors_spec.ts
+++ b/packages/errors/test/unit/visualSnapshotErrors_spec.ts
@@ -185,7 +185,7 @@ const testVisualError = <K extends CypressErrorType> (errorGeneratorFn: () => Er
   }
 }
 
-const testVisualErrors = (whichError: CypressErrorType | '*', errorsToTest: {[K in CypressErrorType]: () => ErrorGenerator<K>}) => {
+const testVisualErrors = (whichError: CypressErrorType | '*', errorsToTest: { [K in CypressErrorType]: () => ErrorGenerator<K> }) => {
   // if we aren't testing all the errors
   if (whichError !== '*') {
     // then just test this individual error
@@ -291,7 +291,7 @@ const makeErr = () => {
 
   err.stack = err.stack?.split('\n').slice(0, 3).join('\n') ?? ''
 
-  return err as Error & {stack: string}
+  return err as Error & { stack: string }
 }
 
 process.on('uncaughtException', (err) => {
diff --git a/packages/errors/tsconfig.json b/packages/errors/tsconfig.json
index dfb951b17cde..c745576400fd 100644
--- a/packages/errors/tsconfig.json
+++ b/packages/errors/tsconfig.json
@@ -1,7 +1,9 @@
 {
   "extends": "../ts/tsconfig.json",
   "include": [
+    "index.js",
     "src",
+    "test"
   ],
   "compilerOptions": {
     "allowJs": false,

From abf276f0296991d908f32ab125599a9bc5c45448 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 10:09:20 -0500
Subject: [PATCH 045/127] packages/example

---
 packages/example/bin/convert.js               |  14 +-
 .../cypress/e2e/1-getting-started/todo.cy.js  | 143 ++++++++
 .../e2e/2-advanced-examples/actions.cy.js     | 321 ++++++++++++++++++
 .../e2e/2-advanced-examples/aliasing.cy.js    |  39 +++
 .../e2e/2-advanced-examples/assertions.cy.js  | 176 ++++++++++
 .../e2e/2-advanced-examples/connectors.cy.js  |  98 ++++++
 .../e2e/2-advanced-examples/cookies.cy.js     | 118 +++++++
 .../e2e/2-advanced-examples/cypress_api.cy.js | 185 ++++++++++
 .../e2e/2-advanced-examples/files.cy.js       |  85 +++++
 .../e2e/2-advanced-examples/location.cy.js    |  32 ++
 .../e2e/2-advanced-examples/misc.cy.js        |  90 +++++
 .../e2e/2-advanced-examples/navigation.cy.js  |  55 +++
 .../network_requests.cy.js                    | 163 +++++++++
 .../e2e/2-advanced-examples/querying.cy.js    | 114 +++++++
 .../spies_stubs_clocks.cy.js                  | 204 +++++++++++
 .../e2e/2-advanced-examples/storage.cy.js     | 117 +++++++
 .../e2e/2-advanced-examples/traversal.cy.js   | 121 +++++++
 .../e2e/2-advanced-examples/utilities.cy.js   | 107 ++++++
 .../e2e/2-advanced-examples/viewport.cy.js    |  58 ++++
 .../e2e/2-advanced-examples/waiting.cy.js     |  30 ++
 .../e2e/2-advanced-examples/window.cy.js      |  22 ++
 .../example/cypress/fixtures/example.json     |   5 +
 packages/example/cypress/support/commands.js  |  25 ++
 packages/example/cypress/support/component.js |  20 ++
 packages/example/cypress/support/e2e.js       |  20 ++
 packages/example/eslint.config.ts             |  18 +
 26 files changed, 2372 insertions(+), 8 deletions(-)
 create mode 100644 packages/example/cypress/e2e/1-getting-started/todo.cy.js
 create mode 100644 packages/example/cypress/e2e/2-advanced-examples/actions.cy.js
 create mode 100644 packages/example/cypress/e2e/2-advanced-examples/aliasing.cy.js
 create mode 100644 packages/example/cypress/e2e/2-advanced-examples/assertions.cy.js
 create mode 100644 packages/example/cypress/e2e/2-advanced-examples/connectors.cy.js
 create mode 100644 packages/example/cypress/e2e/2-advanced-examples/cookies.cy.js
 create mode 100644 packages/example/cypress/e2e/2-advanced-examples/cypress_api.cy.js
 create mode 100644 packages/example/cypress/e2e/2-advanced-examples/files.cy.js
 create mode 100644 packages/example/cypress/e2e/2-advanced-examples/location.cy.js
 create mode 100644 packages/example/cypress/e2e/2-advanced-examples/misc.cy.js
 create mode 100644 packages/example/cypress/e2e/2-advanced-examples/navigation.cy.js
 create mode 100644 packages/example/cypress/e2e/2-advanced-examples/network_requests.cy.js
 create mode 100644 packages/example/cypress/e2e/2-advanced-examples/querying.cy.js
 create mode 100644 packages/example/cypress/e2e/2-advanced-examples/spies_stubs_clocks.cy.js
 create mode 100644 packages/example/cypress/e2e/2-advanced-examples/storage.cy.js
 create mode 100644 packages/example/cypress/e2e/2-advanced-examples/traversal.cy.js
 create mode 100644 packages/example/cypress/e2e/2-advanced-examples/utilities.cy.js
 create mode 100644 packages/example/cypress/e2e/2-advanced-examples/viewport.cy.js
 create mode 100644 packages/example/cypress/e2e/2-advanced-examples/waiting.cy.js
 create mode 100644 packages/example/cypress/e2e/2-advanced-examples/window.cy.js
 create mode 100644 packages/example/cypress/fixtures/example.json
 create mode 100644 packages/example/cypress/support/commands.js
 create mode 100644 packages/example/cypress/support/component.js
 create mode 100644 packages/example/cypress/support/e2e.js
 create mode 100644 packages/example/eslint.config.ts

diff --git a/packages/example/bin/convert.js b/packages/example/bin/convert.js
index 8ba38500d38f..81fa0c6c5612 100755
--- a/packages/example/bin/convert.js
+++ b/packages/example/bin/convert.js
@@ -1,7 +1,5 @@
 #!/usr/bin/env node
 
-/* eslint-disable quotes */
-
 const fs = require('fs')
 const path = require('path')
 const glob = require('glob')
@@ -17,12 +15,12 @@ function replaceStringsIn (file) {
     }
 
     replace('http://localhost:8080', 'https://example.cypress.io')
-    replace("to.eq('localhost:8080')", "to.eq('example.cypress.io')")
-    replace("to.eq('localhost')", "to.eq('example.cypress.io')")
-    replace("to.eq('8080')", "to.eq('')")
-    replace("to.eq('http:')", "to.eq('https:')")
-    replace(eslintRe, "")
-    replace("imgSrcToDataURL('/assets", "imgSrcToDataURL('https://example.cypress.io/assets")
+    replace('to.eq(\'localhost:8080\')', 'to.eq(\'example.cypress.io\')')
+    replace('to.eq(\'localhost\')', 'to.eq(\'example.cypress.io\')')
+    replace('to.eq(\'8080\')', 'to.eq(\'\')')
+    replace('to.eq(\'http:\')', 'to.eq(\'https:\')')
+    replace(eslintRe, '')
+    replace('imgSrcToDataURL(\'/assets', 'imgSrcToDataURL(\'https://example.cypress.io/assets')
 
     fs.writeFile(file, str, function (err) {
       if (err) throw err
diff --git a/packages/example/cypress/e2e/1-getting-started/todo.cy.js b/packages/example/cypress/e2e/1-getting-started/todo.cy.js
new file mode 100644
index 000000000000..4768ff923ece
--- /dev/null
+++ b/packages/example/cypress/e2e/1-getting-started/todo.cy.js
@@ -0,0 +1,143 @@
+/// <reference types="cypress" />
+
+// Welcome to Cypress!
+//
+// This spec file contains a variety of sample tests
+// for a todo list app that are designed to demonstrate
+// the power of writing tests in Cypress.
+//
+// To learn more about how Cypress works and
+// what makes it such an awesome testing tool,
+// please read our getting started guide:
+// https://on.cypress.io/introduction-to-cypress
+
+describe('example to-do app', () => {
+  beforeEach(() => {
+    // Cypress starts out with a blank slate for each test
+    // so we must tell it to visit our website with the `cy.visit()` command.
+    // Since we want to visit the same URL at the start of all our tests,
+    // we include it in our beforeEach function so that it runs before each test
+    cy.visit('https://example.cypress.io/todo')
+  })
+
+  it('displays two todo items by default', () => {
+    // We use the `cy.get()` command to get all elements that match the selector.
+    // Then, we use `should` to assert that there are two matched items,
+    // which are the two default items.
+    cy.get('.todo-list li').should('have.length', 2)
+
+    // We can go even further and check that the default todos each contain
+    // the correct text. We use the `first` and `last` functions
+    // to get just the first and last matched elements individually,
+    // and then perform an assertion with `should`.
+    cy.get('.todo-list li').first().should('have.text', 'Pay electric bill')
+    cy.get('.todo-list li').last().should('have.text', 'Walk the dog')
+  })
+
+  it('can add new todo items', () => {
+    // We'll store our item text in a variable so we can reuse it
+    const newItem = 'Feed the cat'
+
+    // Let's get the input element and use the `type` command to
+    // input our new list item. After typing the content of our item,
+    // we need to type the enter key as well in order to submit the input.
+    // This input has a data-test attribute so we'll use that to select the
+    // element in accordance with best practices:
+    // https://on.cypress.io/selecting-elements
+    cy.get('[data-test=new-todo]').type(`${newItem}{enter}`)
+
+    // Now that we've typed our new item, let's check that it actually was added to the list.
+    // Since it's the newest item, it should exist as the last element in the list.
+    // In addition, with the two default items, we should have a total of 3 elements in the list.
+    // Since assertions yield the element that was asserted on,
+    // we can chain both of these assertions together into a single statement.
+    cy.get('.todo-list li')
+      .should('have.length', 3)
+      .last()
+      .should('have.text', newItem)
+  })
+
+  it('can check off an item as completed', () => {
+    // In addition to using the `get` command to get an element by selector,
+    // we can also use the `contains` command to get an element by its contents.
+    // However, this will yield the <label>, which is lowest-level element that contains the text.
+    // In order to check the item, we'll find the <input> element for this <label>
+    // by traversing up the dom to the parent element. From there, we can `find`
+    // the child checkbox <input> element and use the `check` command to check it.
+    cy.contains('Pay electric bill')
+      .parent()
+      .find('input[type=checkbox]')
+      .check()
+
+    // Now that we've checked the button, we can go ahead and make sure
+    // that the list element is now marked as completed.
+    // Again we'll use `contains` to find the <label> element and then use the `parents` command
+    // to traverse multiple levels up the dom until we find the corresponding <li> element.
+    // Once we get that element, we can assert that it has the completed class.
+    cy.contains('Pay electric bill')
+      .parents('li')
+      .should('have.class', 'completed')
+  })
+
+  context('with a checked task', () => {
+    beforeEach(() => {
+      // We'll take the command we used above to check off an element
+      // Since we want to perform multiple tests that start with checking
+      // one element, we put it in the beforeEach hook
+      // so that it runs at the start of every test.
+      cy.contains('Pay electric bill')
+        .parent()
+        .find('input[type=checkbox]')
+        .check()
+    })
+
+    it('can filter for uncompleted tasks', () => {
+      // We'll click on the "active" button in order to
+      // display only incomplete items
+      cy.contains('Active').click()
+
+      // After filtering, we can assert that there is only the one
+      // incomplete item in the list.
+      cy.get('.todo-list li')
+        .should('have.length', 1)
+        .first()
+        .should('have.text', 'Walk the dog')
+
+      // For good measure, let's also assert that the task we checked off
+      // does not exist on the page.
+      cy.contains('Pay electric bill').should('not.exist')
+    })
+
+    it('can filter for completed tasks', () => {
+      // We can perform similar steps as the test above to ensure
+      // that only completed tasks are shown
+      cy.contains('Completed').click()
+
+      cy.get('.todo-list li')
+        .should('have.length', 1)
+        .first()
+        .should('have.text', 'Pay electric bill')
+
+      cy.contains('Walk the dog').should('not.exist')
+    })
+
+    it('can delete all completed tasks', () => {
+      // First, let's click the "Clear completed" button
+      // `contains` is actually serving two purposes here.
+      // First, it's ensuring that the button exists within the dom.
+      // This button only appears when at least one task is checked
+      // so this command is implicitly verifying that it does exist.
+      // Second, it selects the button so we can click it.
+      cy.contains('Clear completed').click()
+
+      // Then we can make sure that there is only one element
+      // in the list and our element does not exist
+      cy.get('.todo-list li')
+        .should('have.length', 1)
+        .should('not.have.text', 'Pay electric bill')
+
+      // Finally, make sure that the clear button no longer exists.
+      cy.contains('Clear completed').should('not.exist')
+    })
+  })
+})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/actions.cy.js b/packages/example/cypress/e2e/2-advanced-examples/actions.cy.js
new file mode 100644
index 000000000000..7a6ef7fbf41a
--- /dev/null
+++ b/packages/example/cypress/e2e/2-advanced-examples/actions.cy.js
@@ -0,0 +1,321 @@
+/// <reference types="cypress" />
+
+context('Actions', () => {
+  beforeEach(() => {
+    cy.visit('https://example.cypress.io/commands/actions')
+  })
+
+  // https://on.cypress.io/interacting-with-elements
+
+  it('.type() - type into a DOM element', () => {
+    // https://on.cypress.io/type
+    cy.get('.action-email').type('fake@email.com')
+    cy.get('.action-email').should('have.value', 'fake@email.com')
+
+    // .type() with special character sequences
+    cy.get('.action-email').type('{leftarrow}{rightarrow}{uparrow}{downarrow}')
+    cy.get('.action-email').type('{del}{selectall}{backspace}')
+
+    // .type() with key modifiers
+    cy.get('.action-email').type('{alt}{option}') //these are equivalent
+    cy.get('.action-email').type('{ctrl}{control}') //these are equivalent
+    cy.get('.action-email').type('{meta}{command}{cmd}') //these are equivalent
+    cy.get('.action-email').type('{shift}')
+
+    // Delay each keypress by 0.1 sec
+    cy.get('.action-email').type('slow.typing@email.com', { delay: 100 })
+    cy.get('.action-email').should('have.value', 'slow.typing@email.com')
+
+    cy.get('.action-disabled')
+      // Ignore error checking prior to type
+      // like whether the input is visible or disabled
+      .type('disabled error checking', { force: true })
+    cy.get('.action-disabled').should('have.value', 'disabled error checking')
+  })
+
+  it('.focus() - focus on a DOM element', () => {
+    // https://on.cypress.io/focus
+    cy.get('.action-focus').focus()
+    cy.get('.action-focus').should('have.class', 'focus')
+      .prev().should('have.attr', 'style', 'color: orange;')
+  })
+
+  it('.blur() - blur off a DOM element', () => {
+    // https://on.cypress.io/blur
+    cy.get('.action-blur').type('About to blur')
+    cy.get('.action-blur').blur()
+    cy.get('.action-blur').should('have.class', 'error')
+      .prev().should('have.attr', 'style', 'color: red;')
+  })
+
+  it('.clear() - clears an input or textarea element', () => {
+    // https://on.cypress.io/clear
+    cy.get('.action-clear').type('Clear this text')
+    cy.get('.action-clear').should('have.value', 'Clear this text')
+    cy.get('.action-clear').clear()
+    cy.get('.action-clear').should('have.value', '')
+  })
+
+  it('.submit() - submit a form', () => {
+    // https://on.cypress.io/submit
+    cy.get('.action-form')
+      .find('[type="text"]').type('HALFOFF')
+
+    cy.get('.action-form').submit()
+    cy.get('.action-form').next().should('contain', 'Your form has been submitted!')
+  })
+
+  it('.click() - click on a DOM element', () => {
+    // https://on.cypress.io/click
+    cy.get('.action-btn').click()
+
+    // You can click on 9 specific positions of an element:
+    //  -----------------------------------
+    // | topLeft        top       topRight |
+    // |                                   |
+    // |                                   |
+    // |                                   |
+    // | left          center        right |
+    // |                                   |
+    // |                                   |
+    // |                                   |
+    // | bottomLeft   bottom   bottomRight |
+    //  -----------------------------------
+
+    // clicking in the center of the element is the default
+    cy.get('#action-canvas').click()
+
+    cy.get('#action-canvas').click('topLeft')
+    cy.get('#action-canvas').click('top')
+    cy.get('#action-canvas').click('topRight')
+    cy.get('#action-canvas').click('left')
+    cy.get('#action-canvas').click('right')
+    cy.get('#action-canvas').click('bottomLeft')
+    cy.get('#action-canvas').click('bottom')
+    cy.get('#action-canvas').click('bottomRight')
+
+    // .click() accepts an x and y coordinate
+    // that controls where the click occurs :)
+
+    cy.get('#action-canvas')
+    cy.get('#action-canvas').click(80, 75) // click 80px on x coord and 75px on y coord
+    cy.get('#action-canvas').click(170, 75)
+    cy.get('#action-canvas').click(80, 165)
+    cy.get('#action-canvas').click(100, 185)
+    cy.get('#action-canvas').click(125, 190)
+    cy.get('#action-canvas').click(150, 185)
+    cy.get('#action-canvas').click(170, 165)
+
+    // click multiple elements by passing multiple: true
+    cy.get('.action-labels>.label').click({ multiple: true })
+
+    // Ignore error checking prior to clicking
+    cy.get('.action-opacity>.btn').click({ force: true })
+  })
+
+  it('.dblclick() - double click on a DOM element', () => {
+    // https://on.cypress.io/dblclick
+
+    // Our app has a listener on 'dblclick' event in our 'scripts.js'
+    // that hides the div and shows an input on double click
+    cy.get('.action-div').dblclick()
+    cy.get('.action-div').should('not.be.visible')
+    cy.get('.action-input-hidden').should('be.visible')
+  })
+
+  it('.rightclick() - right click on a DOM element', () => {
+    // https://on.cypress.io/rightclick
+
+    // Our app has a listener on 'contextmenu' event in our 'scripts.js'
+    // that hides the div and shows an input on right click
+    cy.get('.rightclick-action-div').rightclick()
+    cy.get('.rightclick-action-div').should('not.be.visible')
+    cy.get('.rightclick-action-input-hidden').should('be.visible')
+  })
+
+  it('.check() - check a checkbox or radio element', () => {
+    // https://on.cypress.io/check
+
+    // By default, .check() will check all
+    // matching checkbox or radio elements in succession, one after another
+    cy.get('.action-checkboxes [type="checkbox"]').not('[disabled]').check()
+    cy.get('.action-checkboxes [type="checkbox"]').not('[disabled]').should('be.checked')
+
+    cy.get('.action-radios [type="radio"]').not('[disabled]').check()
+    cy.get('.action-radios [type="radio"]').not('[disabled]').should('be.checked')
+
+    // .check() accepts a value argument
+    cy.get('.action-radios [type="radio"]').check('radio1')
+    cy.get('.action-radios [type="radio"]').should('be.checked')
+
+    // .check() accepts an array of values
+    cy.get('.action-multiple-checkboxes [type="checkbox"]').check(['checkbox1', 'checkbox2'])
+    cy.get('.action-multiple-checkboxes [type="checkbox"]').should('be.checked')
+
+    // Ignore error checking prior to checking
+    cy.get('.action-checkboxes [disabled]').check({ force: true })
+    cy.get('.action-checkboxes [disabled]').should('be.checked')
+
+    cy.get('.action-radios [type="radio"]').check('radio3', { force: true })
+    cy.get('.action-radios [type="radio"]').should('be.checked')
+  })
+
+  it('.uncheck() - uncheck a checkbox element', () => {
+    // https://on.cypress.io/uncheck
+
+    // By default, .uncheck() will uncheck all matching
+    // checkbox elements in succession, one after another
+    cy.get('.action-check [type="checkbox"]')
+      .not('[disabled]')
+      .uncheck()
+    cy.get('.action-check [type="checkbox"]')
+      .not('[disabled]')
+      .should('not.be.checked')
+
+    // .uncheck() accepts a value argument
+    cy.get('.action-check [type="checkbox"]')
+      .check('checkbox1')
+    cy.get('.action-check [type="checkbox"]')
+      .uncheck('checkbox1')
+    cy.get('.action-check [type="checkbox"][value="checkbox1"]')
+      .should('not.be.checked')
+
+    // .uncheck() accepts an array of values
+    cy.get('.action-check [type="checkbox"]')
+      .check(['checkbox1', 'checkbox3'])
+    cy.get('.action-check [type="checkbox"]')
+      .uncheck(['checkbox1', 'checkbox3'])
+    cy.get('.action-check [type="checkbox"][value="checkbox1"]')
+      .should('not.be.checked')
+    cy.get('.action-check [type="checkbox"][value="checkbox3"]')
+      .should('not.be.checked')
+
+    // Ignore error checking prior to unchecking
+    cy.get('.action-check [disabled]').uncheck({ force: true })
+    cy.get('.action-check [disabled]').should('not.be.checked')
+  })
+
+  it('.select() - select an option in a <select> element', () => {
+    // https://on.cypress.io/select
+
+    // at first, no option should be selected
+    cy.get('.action-select')
+      .should('have.value', '--Select a fruit--')
+
+    // Select option(s) with matching text content
+    cy.get('.action-select').select('apples')
+    // confirm the apples were selected
+    // note that each value starts with "fr-" in our HTML
+    cy.get('.action-select').should('have.value', 'fr-apples')
+
+    cy.get('.action-select-multiple')
+      .select(['apples', 'oranges', 'bananas'])
+    cy.get('.action-select-multiple')
+      // when getting multiple values, invoke "val" method first
+      .invoke('val')
+      .should('deep.equal', ['fr-apples', 'fr-oranges', 'fr-bananas'])
+
+    // Select option(s) with matching value
+    cy.get('.action-select').select('fr-bananas')
+    cy.get('.action-select')
+      // can attach an assertion right away to the element
+      .should('have.value', 'fr-bananas')
+
+    cy.get('.action-select-multiple')
+      .select(['fr-apples', 'fr-oranges', 'fr-bananas'])
+    cy.get('.action-select-multiple')
+      .invoke('val')
+      .should('deep.equal', ['fr-apples', 'fr-oranges', 'fr-bananas'])
+
+    // assert the selected values include oranges
+    cy.get('.action-select-multiple')
+      .invoke('val').should('include', 'fr-oranges')
+  })
+
+  it('.scrollIntoView() - scroll an element into view', () => {
+    // https://on.cypress.io/scrollintoview
+
+    // normally all of these buttons are hidden,
+    // because they're not within
+    // the viewable area of their parent
+    // (we need to scroll to see them)
+    cy.get('#scroll-horizontal button')
+      .should('not.be.visible')
+
+    // scroll the button into view, as if the user had scrolled
+    cy.get('#scroll-horizontal button').scrollIntoView()
+    cy.get('#scroll-horizontal button')
+      .should('be.visible')
+
+    cy.get('#scroll-vertical button')
+      .should('not.be.visible')
+
+    // Cypress handles the scroll direction needed
+    cy.get('#scroll-vertical button').scrollIntoView()
+    cy.get('#scroll-vertical button')
+      .should('be.visible')
+
+    cy.get('#scroll-both button')
+      .should('not.be.visible')
+
+    // Cypress knows to scroll to the right and down
+    cy.get('#scroll-both button').scrollIntoView()
+    cy.get('#scroll-both button')
+      .should('be.visible')
+  })
+
+  it('.trigger() - trigger an event on a DOM element', () => {
+    // https://on.cypress.io/trigger
+
+    // To interact with a range input (slider)
+    // we need to set its value & trigger the
+    // event to signal it changed
+
+    // Here, we invoke jQuery's val() method to set
+    // the value and trigger the 'change' event
+    cy.get('.trigger-input-range')
+      .invoke('val', 25)
+    cy.get('.trigger-input-range')
+      .trigger('change')
+    cy.get('.trigger-input-range')
+      .get('input[type=range]').siblings('p')
+      .should('have.text', '25')
+  })
+
+  it('cy.scrollTo() - scroll the window or element to a position', () => {
+    // https://on.cypress.io/scrollto
+
+    // You can scroll to 9 specific positions of an element:
+    //  -----------------------------------
+    // | topLeft        top       topRight |
+    // |                                   |
+    // |                                   |
+    // |                                   |
+    // | left          center        right |
+    // |                                   |
+    // |                                   |
+    // |                                   |
+    // | bottomLeft   bottom   bottomRight |
+    //  -----------------------------------
+
+    // if you chain .scrollTo() off of cy, we will
+    // scroll the entire window
+    cy.scrollTo('bottom')
+
+    cy.get('#scrollable-horizontal').scrollTo('right')
+
+    // or you can scroll to a specific coordinate:
+    // (x axis, y axis) in pixels
+    cy.get('#scrollable-vertical').scrollTo(250, 250)
+
+    // or you can scroll to a specific percentage
+    // of the (width, height) of the element
+    cy.get('#scrollable-both').scrollTo('75%', '25%')
+
+    // control the easing of the scroll (default is 'swing')
+    cy.get('#scrollable-vertical').scrollTo('center', { easing: 'linear' })
+
+    // control the duration of the scroll (in ms)
+    cy.get('#scrollable-both').scrollTo('center', { duration: 2000 })
+  })
+})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/aliasing.cy.js b/packages/example/cypress/e2e/2-advanced-examples/aliasing.cy.js
new file mode 100644
index 000000000000..a02fb2bb93d7
--- /dev/null
+++ b/packages/example/cypress/e2e/2-advanced-examples/aliasing.cy.js
@@ -0,0 +1,39 @@
+/// <reference types="cypress" />
+
+context('Aliasing', () => {
+  beforeEach(() => {
+    cy.visit('https://example.cypress.io/commands/aliasing')
+  })
+
+  it('.as() - alias a DOM element for later use', () => {
+    // https://on.cypress.io/as
+
+    // Alias a DOM element for use later
+    // We don't have to traverse to the element
+    // later in our code, we reference it with @
+
+    cy.get('.as-table').find('tbody>tr')
+      .first().find('td').first()
+      .find('button').as('firstBtn')
+
+    // when we reference the alias, we place an
+    // @ in front of its name
+    cy.get('@firstBtn').click()
+
+    cy.get('@firstBtn')
+      .should('have.class', 'btn-success')
+      .and('contain', 'Changed')
+  })
+
+  it('.as() - alias a route for later use', () => {
+    // Alias the route to wait for its response
+    cy.intercept('GET', '**/comments/*').as('getComment')
+
+    // we have code that gets a comment when
+    // the button is clicked in scripts.js
+    cy.get('.network-btn').click()
+
+    // https://on.cypress.io/wait
+    cy.wait('@getComment').its('response.statusCode').should('eq', 200)
+  })
+})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/assertions.cy.js b/packages/example/cypress/e2e/2-advanced-examples/assertions.cy.js
new file mode 100644
index 000000000000..79e3d0e9148f
--- /dev/null
+++ b/packages/example/cypress/e2e/2-advanced-examples/assertions.cy.js
@@ -0,0 +1,176 @@
+/// <reference types="cypress" />
+
+context('Assertions', () => {
+  beforeEach(() => {
+    cy.visit('https://example.cypress.io/commands/assertions')
+  })
+
+  describe('Implicit Assertions', () => {
+    it('.should() - make an assertion about the current subject', () => {
+      // https://on.cypress.io/should
+      cy.get('.assertion-table')
+        .find('tbody tr:last')
+        .should('have.class', 'success')
+        .find('td')
+        .first()
+        // checking the text of the <td> element in various ways
+        .should('have.text', 'Column content')
+        .should('contain', 'Column content')
+        .should('have.html', 'Column content')
+        // chai-jquery uses "is()" to check if element matches selector
+        .should('match', 'td')
+        // to match text content against a regular expression
+        // first need to invoke jQuery method text()
+        // and then match using regular expression
+        .invoke('text')
+        .should('match', /column content/i)
+
+      // a better way to check element's text content against a regular expression
+      // is to use "cy.contains"
+      // https://on.cypress.io/contains
+      cy.get('.assertion-table')
+        .find('tbody tr:last')
+        // finds first <td> element with text content matching regular expression
+        .contains('td', /column content/i)
+        .should('be.visible')
+
+      // for more information about asserting element's text
+      // see https://on.cypress.io/using-cypress-faq#How-do-I-get-an-element’s-text-contents
+    })
+
+    it('.and() - chain multiple assertions together', () => {
+      // https://on.cypress.io/and
+      cy.get('.assertions-link')
+        .should('have.class', 'active')
+        .and('have.attr', 'href')
+        .and('include', 'cypress.io')
+    })
+  })
+
+  describe('Explicit Assertions', () => {
+    // https://on.cypress.io/assertions
+    it('expect - make an assertion about a specified subject', () => {
+      // We can use Chai's BDD style assertions
+      expect(true).to.be.true
+      const o = { foo: 'bar' }
+
+      expect(o).to.equal(o)
+      expect(o).to.deep.equal({ foo: 'bar' })
+      // matching text using regular expression
+      expect('FooBar').to.match(/bar$/i)
+    })
+
+    it('pass your own callback function to should()', () => {
+      // Pass a function to should that can have any number
+      // of explicit assertions within it.
+      // The ".should(cb)" function will be retried
+      // automatically until it passes all your explicit assertions or times out.
+      cy.get('.assertions-p')
+        .find('p')
+        .should(($p) => {
+          // https://on.cypress.io/$
+          // return an array of texts from all of the p's
+          const texts = $p.map((i, el) => Cypress.$(el).text())
+
+          // jquery map returns jquery object
+          // and .get() convert this to simple array
+          const paragraphs = texts.get()
+
+          // array should have length of 3
+          expect(paragraphs, 'has 3 paragraphs').to.have.length(3)
+
+          // use second argument to expect(...) to provide clear
+          // message with each assertion
+          expect(paragraphs, 'has expected text in each paragraph').to.deep.eq([
+            'Some text from first p',
+            'More text from second p',
+            'And even more text from third p',
+          ])
+        })
+    })
+
+    it('finds element by class name regex', () => {
+      cy.get('.docs-header')
+        .find('div')
+        // .should(cb) callback function will be retried
+        .should(($div) => {
+          expect($div).to.have.length(1)
+
+          const className = $div[0].className
+
+          expect(className).to.match(/heading-/)
+        })
+        // .then(cb) callback is not retried,
+        // it either passes or fails
+        .then(($div) => {
+          expect($div, 'text content').to.have.text('Introduction')
+        })
+    })
+
+    it('can throw any error', () => {
+      cy.get('.docs-header')
+        .find('div')
+        .should(($div) => {
+          if ($div.length !== 1) {
+            // you can throw your own errors
+            throw new Error('Did not find 1 element')
+          }
+
+          const className = $div[0].className
+
+          if (!className.match(/heading-/)) {
+            throw new Error(`Could not find class "heading-" in ${className}`)
+          }
+        })
+    })
+
+    it('matches unknown text between two elements', () => {
+      /**
+       * Text from the first element.
+       * @type {string}
+      */
+      let text
+
+      /**
+       * Normalizes passed text,
+       * useful before comparing text with spaces and different capitalization.
+       * @param {string} s Text to normalize
+      */
+      const normalizeText = (s) => s.replace(/\s/g, '').toLowerCase()
+
+      cy.get('.two-elements')
+        .find('.first')
+        .then(($first) => {
+          // save text from the first element
+          text = normalizeText($first.text())
+        })
+
+      cy.get('.two-elements')
+        .find('.second')
+        .should(($div) => {
+          // we can massage text before comparing
+          const secondText = normalizeText($div.text())
+
+          expect(secondText, 'second text').to.equal(text)
+        })
+    })
+
+    it('assert - assert shape of an object', () => {
+      const person = {
+        name: 'Joe',
+        age: 20,
+      }
+
+      assert.isObject(person, 'value is object')
+    })
+
+    it('retries the should callback until assertions pass', () => {
+      cy.get('#random-number')
+        .should(($div) => {
+          const n = parseFloat($div.text())
+
+          expect(n).to.be.gte(1).and.be.lte(10)
+        })
+    })
+  })
+})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/connectors.cy.js b/packages/example/cypress/e2e/2-advanced-examples/connectors.cy.js
new file mode 100644
index 000000000000..f24cf526ed7c
--- /dev/null
+++ b/packages/example/cypress/e2e/2-advanced-examples/connectors.cy.js
@@ -0,0 +1,98 @@
+/// <reference types="cypress" />
+
+context('Connectors', () => {
+  beforeEach(() => {
+    cy.visit('https://example.cypress.io/commands/connectors')
+  })
+
+  it('.each() - iterate over an array of elements', () => {
+    // https://on.cypress.io/each
+    cy.get('.connectors-each-ul>li')
+      .each(($el, index, $list) => {
+        console.log($el, index, $list)
+      })
+  })
+
+  it('.its() - get properties on the current subject', () => {
+    // https://on.cypress.io/its
+    cy.get('.connectors-its-ul>li')
+      // calls the 'length' property yielding that value
+      .its('length')
+      .should('be.gt', 2)
+  })
+
+  it('.invoke() - invoke a function on the current subject', () => {
+    // our div is hidden in our script.js
+    // $('.connectors-div').hide()
+    cy.get('.connectors-div').should('be.hidden')
+
+    // https://on.cypress.io/invoke
+    // call the jquery method 'show' on the 'div.container'
+    cy.get('.connectors-div').invoke('show')
+
+    cy.get('.connectors-div').should('be.visible')
+  })
+
+  it('.spread() - spread an array as individual args to callback function', () => {
+    // https://on.cypress.io/spread
+    const arr = ['foo', 'bar', 'baz']
+
+    cy.wrap(arr).spread((foo, bar, baz) => {
+      expect(foo).to.eq('foo')
+      expect(bar).to.eq('bar')
+      expect(baz).to.eq('baz')
+    })
+  })
+
+  describe('.then()', () => {
+    it('invokes a callback function with the current subject', () => {
+      // https://on.cypress.io/then
+      cy.get('.connectors-list > li')
+        .then(($lis) => {
+          expect($lis, '3 items').to.have.length(3)
+          expect($lis.eq(0), 'first item').to.contain('Walk the dog')
+          expect($lis.eq(1), 'second item').to.contain('Feed the cat')
+          expect($lis.eq(2), 'third item').to.contain('Write JavaScript')
+        })
+    })
+
+    it('yields the returned value to the next command', () => {
+      cy.wrap(1)
+        .then((num) => {
+          expect(num).to.equal(1)
+
+          return 2
+        })
+        .then((num) => {
+          expect(num).to.equal(2)
+        })
+    })
+
+    it('yields the original subject without return', () => {
+      cy.wrap(1)
+        .then((num) => {
+          expect(num).to.equal(1)
+          // note that nothing is returned from this callback
+        })
+        .then((num) => {
+          // this callback receives the original unchanged value 1
+          expect(num).to.equal(1)
+        })
+    })
+
+    it('yields the value yielded by the last Cypress command inside', () => {
+      cy.wrap(1)
+        .then((num) => {
+          expect(num).to.equal(1)
+          // note how we run a Cypress command
+          // the result yielded by this Cypress command
+          // will be passed to the second ".then"
+          cy.wrap(2)
+        })
+        .then((num) => {
+          // this callback receives the value yielded by "cy.wrap(2)"
+          expect(num).to.equal(2)
+        })
+    })
+  })
+})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/cookies.cy.js b/packages/example/cypress/e2e/2-advanced-examples/cookies.cy.js
new file mode 100644
index 000000000000..3ad6657e5b81
--- /dev/null
+++ b/packages/example/cypress/e2e/2-advanced-examples/cookies.cy.js
@@ -0,0 +1,118 @@
+/// <reference types="cypress" />
+
+context('Cookies', () => {
+  beforeEach(() => {
+    Cypress.Cookies.debug(true)
+
+    cy.visit('https://example.cypress.io/commands/cookies')
+
+    // clear cookies again after visiting to remove
+    // any 3rd party cookies picked up such as cloudflare
+    cy.clearCookies()
+  })
+
+  it('cy.getCookie() - get a browser cookie', () => {
+    // https://on.cypress.io/getcookie
+    cy.get('#getCookie .set-a-cookie').click()
+
+    // cy.getCookie() yields a cookie object
+    cy.getCookie('token').should('have.property', 'value', '123ABC')
+  })
+
+  it('cy.getCookies() - get browser cookies for the current domain', () => {
+    // https://on.cypress.io/getcookies
+    cy.getCookies().should('be.empty')
+
+    cy.get('#getCookies .set-a-cookie').click()
+
+    // cy.getCookies() yields an array of cookies
+    cy.getCookies().should('have.length', 1).should((cookies) => {
+      // each cookie has these properties
+      expect(cookies[0]).to.have.property('name', 'token')
+      expect(cookies[0]).to.have.property('value', '123ABC')
+      expect(cookies[0]).to.have.property('httpOnly', false)
+      expect(cookies[0]).to.have.property('secure', false)
+      expect(cookies[0]).to.have.property('domain')
+      expect(cookies[0]).to.have.property('path')
+    })
+  })
+
+  it('cy.getAllCookies() - get all browser cookies', () => {
+    // https://on.cypress.io/getallcookies
+    cy.getAllCookies().should('be.empty')
+
+    cy.setCookie('key', 'value')
+    cy.setCookie('key', 'value', { domain: '.example.com' })
+
+    // cy.getAllCookies() yields an array of cookies
+    cy.getAllCookies().should('have.length', 2).should((cookies) => {
+      // each cookie has these properties
+      expect(cookies[0]).to.have.property('name', 'key')
+      expect(cookies[0]).to.have.property('value', 'value')
+      expect(cookies[0]).to.have.property('httpOnly', false)
+      expect(cookies[0]).to.have.property('secure', false)
+      expect(cookies[0]).to.have.property('domain')
+      expect(cookies[0]).to.have.property('path')
+
+      expect(cookies[1]).to.have.property('name', 'key')
+      expect(cookies[1]).to.have.property('value', 'value')
+      expect(cookies[1]).to.have.property('httpOnly', false)
+      expect(cookies[1]).to.have.property('secure', false)
+      expect(cookies[1]).to.have.property('domain', '.example.com')
+      expect(cookies[1]).to.have.property('path')
+    })
+  })
+
+  it('cy.setCookie() - set a browser cookie', () => {
+    // https://on.cypress.io/setcookie
+    cy.getCookies().should('be.empty')
+
+    cy.setCookie('foo', 'bar')
+
+    // cy.getCookie() yields a cookie object
+    cy.getCookie('foo').should('have.property', 'value', 'bar')
+  })
+
+  it('cy.clearCookie() - clear a browser cookie', () => {
+    // https://on.cypress.io/clearcookie
+    cy.getCookie('token').should('be.null')
+
+    cy.get('#clearCookie .set-a-cookie').click()
+
+    cy.getCookie('token').should('have.property', 'value', '123ABC')
+
+    // cy.clearCookies() yields null
+    cy.clearCookie('token')
+
+    cy.getCookie('token').should('be.null')
+  })
+
+  it('cy.clearCookies() - clear browser cookies for the current domain', () => {
+    // https://on.cypress.io/clearcookies
+    cy.getCookies().should('be.empty')
+
+    cy.get('#clearCookies .set-a-cookie').click()
+
+    cy.getCookies().should('have.length', 1)
+
+    // cy.clearCookies() yields null
+    cy.clearCookies()
+
+    cy.getCookies().should('be.empty')
+  })
+
+  it('cy.clearAllCookies() - clear all browser cookies', () => {
+    // https://on.cypress.io/clearallcookies
+    cy.getAllCookies().should('be.empty')
+
+    cy.setCookie('key', 'value')
+    cy.setCookie('key', 'value', { domain: '.example.com' })
+
+    cy.getAllCookies().should('have.length', 2)
+
+    // cy.clearAllCookies() yields null
+    cy.clearAllCookies()
+
+    cy.getAllCookies().should('be.empty')
+  })
+})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/cypress_api.cy.js b/packages/example/cypress/e2e/2-advanced-examples/cypress_api.cy.js
new file mode 100644
index 000000000000..556f2b8ac5fc
--- /dev/null
+++ b/packages/example/cypress/e2e/2-advanced-examples/cypress_api.cy.js
@@ -0,0 +1,185 @@
+/// <reference types="cypress" />
+
+context('Cypress APIs', () => {
+
+  context('Cypress.Commands', () => {
+    beforeEach(() => {
+      cy.visit('https://example.cypress.io/cypress-api')
+    })
+
+    // https://on.cypress.io/custom-commands
+
+    it('.add() - create a custom command', () => {
+      Cypress.Commands.add('console', {
+        prevSubject: true,
+      }, (subject, method) => {
+      // the previous subject is automatically received
+      // and the commands arguments are shifted
+
+        // allow us to change the console method used
+        method = method || 'log'
+
+        // log the subject to the console
+        console[method]('The subject is', subject)
+
+        // whatever we return becomes the new subject
+        // we don't want to change the subject so
+        // we return whatever was passed in
+        return subject
+      })
+
+      cy.get('button').console('info').then(($button) => {
+      // subject is still $button
+      })
+    })
+  })
+
+  context('Cypress.Cookies', () => {
+    beforeEach(() => {
+      cy.visit('https://example.cypress.io/cypress-api')
+    })
+
+    // https://on.cypress.io/cookies
+    it('.debug() - enable or disable debugging', () => {
+      Cypress.Cookies.debug(true)
+
+      // Cypress will now log in the console when
+      // cookies are set or cleared
+      cy.setCookie('fakeCookie', '123ABC')
+      cy.clearCookie('fakeCookie')
+      cy.setCookie('fakeCookie', '123ABC')
+      cy.clearCookie('fakeCookie')
+      cy.setCookie('fakeCookie', '123ABC')
+    })
+  })
+
+  context('Cypress.arch', () => {
+    beforeEach(() => {
+      cy.visit('https://example.cypress.io/cypress-api')
+    })
+
+    it('Get CPU architecture name of underlying OS', () => {
+    // https://on.cypress.io/arch
+      expect(Cypress.arch).to.exist
+    })
+  })
+
+  context('Cypress.config()', () => {
+    beforeEach(() => {
+      cy.visit('https://example.cypress.io/cypress-api')
+    })
+
+    it('Get and set configuration options', () => {
+    // https://on.cypress.io/config
+      let myConfig = Cypress.config()
+
+      expect(myConfig).to.have.property('animationDistanceThreshold', 5)
+      expect(myConfig).to.have.property('baseUrl', null)
+      expect(myConfig).to.have.property('defaultCommandTimeout', 4000)
+      expect(myConfig).to.have.property('requestTimeout', 5000)
+      expect(myConfig).to.have.property('responseTimeout', 30000)
+      expect(myConfig).to.have.property('viewportHeight', 660)
+      expect(myConfig).to.have.property('viewportWidth', 1000)
+      expect(myConfig).to.have.property('pageLoadTimeout', 60000)
+      expect(myConfig).to.have.property('waitForAnimations', true)
+
+      expect(Cypress.config('pageLoadTimeout')).to.eq(60000)
+
+      // this will change the config for the rest of your tests!
+      Cypress.config('pageLoadTimeout', 20000)
+
+      expect(Cypress.config('pageLoadTimeout')).to.eq(20000)
+
+      Cypress.config('pageLoadTimeout', 60000)
+    })
+  })
+
+  context('Cypress.dom', () => {
+    beforeEach(() => {
+      cy.visit('https://example.cypress.io/cypress-api')
+    })
+
+    // https://on.cypress.io/dom
+    it('.isHidden() - determine if a DOM element is hidden', () => {
+      let hiddenP = Cypress.$('.dom-p p.hidden').get(0)
+      let visibleP = Cypress.$('.dom-p p.visible').get(0)
+
+      // our first paragraph has css class 'hidden'
+      expect(Cypress.dom.isHidden(hiddenP)).to.be.true
+      expect(Cypress.dom.isHidden(visibleP)).to.be.false
+    })
+  })
+
+  context('Cypress.env()', () => {
+    beforeEach(() => {
+      cy.visit('https://example.cypress.io/cypress-api')
+    })
+
+    // We can set environment variables for highly dynamic values
+
+    // https://on.cypress.io/environment-variables
+    it('Get environment variables', () => {
+    // https://on.cypress.io/env
+    // set multiple environment variables
+      Cypress.env({
+        host: 'veronica.dev.local',
+        api_server: 'http://localhost:8888/v1/',
+      })
+
+      // get environment variable
+      expect(Cypress.env('host')).to.eq('veronica.dev.local')
+
+      // set environment variable
+      Cypress.env('api_server', 'http://localhost:8888/v2/')
+      expect(Cypress.env('api_server')).to.eq('http://localhost:8888/v2/')
+
+      // get all environment variable
+      expect(Cypress.env()).to.have.property('host', 'veronica.dev.local')
+      expect(Cypress.env()).to.have.property('api_server', 'http://localhost:8888/v2/')
+    })
+  })
+
+  context('Cypress.log', () => {
+    beforeEach(() => {
+      cy.visit('https://example.cypress.io/cypress-api')
+    })
+
+    it('Control what is printed to the Command Log', () => {
+    // https://on.cypress.io/cypress-log
+    })
+  })
+
+  context('Cypress.platform', () => {
+    beforeEach(() => {
+      cy.visit('https://example.cypress.io/cypress-api')
+    })
+
+    it('Get underlying OS name', () => {
+    // https://on.cypress.io/platform
+      expect(Cypress.platform).to.be.exist
+    })
+  })
+
+  context('Cypress.version', () => {
+    beforeEach(() => {
+      cy.visit('https://example.cypress.io/cypress-api')
+    })
+
+    it('Get current version of Cypress being run', () => {
+    // https://on.cypress.io/version
+      expect(Cypress.version).to.be.exist
+    })
+  })
+
+  context('Cypress.spec', () => {
+    beforeEach(() => {
+      cy.visit('https://example.cypress.io/cypress-api')
+    })
+
+    it('Get current spec information', () => {
+    // https://on.cypress.io/spec
+    // wrap the object so we can inspect it easily by clicking in the command log
+      cy.wrap(Cypress.spec).should('include.keys', ['name', 'relative', 'absolute'])
+    })
+  })
+})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/files.cy.js b/packages/example/cypress/e2e/2-advanced-examples/files.cy.js
new file mode 100644
index 000000000000..1be9d44b7df7
--- /dev/null
+++ b/packages/example/cypress/e2e/2-advanced-examples/files.cy.js
@@ -0,0 +1,85 @@
+/// <reference types="cypress" />
+
+/// JSON fixture file can be loaded directly using
+// the built-in JavaScript bundler
+const requiredExample = require('../../fixtures/example')
+
+context('Files', () => {
+  beforeEach(() => {
+    cy.visit('https://example.cypress.io/commands/files')
+
+    // load example.json fixture file and store
+    // in the test context object
+    cy.fixture('example.json').as('example')
+  })
+
+  it('cy.fixture() - load a fixture', () => {
+    // https://on.cypress.io/fixture
+
+    // Instead of writing a response inline you can
+    // use a fixture file's content.
+
+    // when application makes an Ajax request matching "GET **/comments/*"
+    // Cypress will intercept it and reply with the object in `example.json` fixture
+    cy.intercept('GET', '**/comments/*', { fixture: 'example.json' }).as('getComment')
+
+    // we have code that gets a comment when
+    // the button is clicked in scripts.js
+    cy.get('.fixture-btn').click()
+
+    cy.wait('@getComment').its('response.body')
+      .should('have.property', 'name')
+      .and('include', 'Using fixtures to represent data')
+  })
+
+  it('cy.fixture() or require - load a fixture', function () {
+    // we are inside the "function () { ... }"
+    // callback and can use test context object "this"
+    // "this.example" was loaded in "beforeEach" function callback
+    expect(this.example, 'fixture in the test context')
+      .to.deep.equal(requiredExample)
+
+    // or use "cy.wrap" and "should('deep.equal', ...)" assertion
+    cy.wrap(this.example)
+      .should('deep.equal', requiredExample)
+  })
+
+  it('cy.readFile() - read file contents', () => {
+    // https://on.cypress.io/readfile
+
+    // You can read a file and yield its contents
+    // The filePath is relative to your project's root.
+    cy.readFile(Cypress.config('configFile')).then((config) => {
+      expect(config).to.be.an('string')
+    })
+  })
+
+  it('cy.writeFile() - write to a file', () => {
+    // https://on.cypress.io/writefile
+
+    // You can write to a file
+
+    // Use a response from a request to automatically
+    // generate a fixture file for use later
+    cy.request('https://jsonplaceholder.cypress.io/users')
+      .then((response) => {
+        cy.writeFile('cypress/fixtures/users.json', response.body)
+      })
+
+    cy.fixture('users').should((users) => {
+      expect(users[0].name).to.exist
+    })
+
+    // JavaScript arrays and objects are stringified
+    // and formatted into text.
+    cy.writeFile('cypress/fixtures/profile.json', {
+      id: 8739,
+      name: 'Jane',
+      email: 'jane@example.com',
+    })
+
+    cy.fixture('profile').should((profile) => {
+      expect(profile.name).to.eq('Jane')
+    })
+  })
+})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/location.cy.js b/packages/example/cypress/e2e/2-advanced-examples/location.cy.js
new file mode 100644
index 000000000000..299867da07ef
--- /dev/null
+++ b/packages/example/cypress/e2e/2-advanced-examples/location.cy.js
@@ -0,0 +1,32 @@
+/// <reference types="cypress" />
+
+context('Location', () => {
+  beforeEach(() => {
+    cy.visit('https://example.cypress.io/commands/location')
+  })
+
+  it('cy.hash() - get the current URL hash', () => {
+    // https://on.cypress.io/hash
+    cy.hash().should('be.empty')
+  })
+
+  it('cy.location() - get window.location', () => {
+    // https://on.cypress.io/location
+    cy.location().should((location) => {
+      expect(location.hash).to.be.empty
+      expect(location.href).to.eq('https://example.cypress.io/commands/location')
+      expect(location.host).to.eq('example.cypress.io')
+      expect(location.hostname).to.eq('example.cypress.io')
+      expect(location.origin).to.eq('https://example.cypress.io')
+      expect(location.pathname).to.eq('/commands/location')
+      expect(location.port).to.eq('')
+      expect(location.protocol).to.eq('https:')
+      expect(location.search).to.be.empty
+    })
+  })
+
+  it('cy.url() - get the current URL', () => {
+    // https://on.cypress.io/url
+    cy.url().should('eq', 'https://example.cypress.io/commands/location')
+  })
+})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/misc.cy.js b/packages/example/cypress/e2e/2-advanced-examples/misc.cy.js
new file mode 100644
index 000000000000..52b947454a14
--- /dev/null
+++ b/packages/example/cypress/e2e/2-advanced-examples/misc.cy.js
@@ -0,0 +1,90 @@
+/// <reference types="cypress" />
+
+context('Misc', () => {
+  beforeEach(() => {
+    cy.visit('https://example.cypress.io/commands/misc')
+  })
+
+  it('cy.exec() - execute a system command', () => {
+    // execute a system command.
+    // so you can take actions necessary for
+    // your test outside the scope of Cypress.
+    // https://on.cypress.io/exec
+
+    // we can use Cypress.platform string to
+    // select appropriate command
+    // https://on.cypress/io/platform
+    cy.log(`Platform ${Cypress.platform} architecture ${Cypress.arch}`)
+
+    // on CircleCI Windows build machines we have a failure to run bash shell
+    // https://github.com/cypress-io/cypress/issues/5169
+    // so skip some of the tests by passing flag "--env circle=true"
+    const isCircleOnWindows = Cypress.platform === 'win32' && Cypress.env('circle')
+
+    if (isCircleOnWindows) {
+      cy.log('Skipping test on CircleCI')
+
+      return
+    }
+
+    // cy.exec problem on Shippable CI
+    // https://github.com/cypress-io/cypress/issues/6718
+    const isShippable = Cypress.platform === 'linux' && Cypress.env('shippable')
+
+    if (isShippable) {
+      cy.log('Skipping test on ShippableCI')
+
+      return
+    }
+
+    cy.exec('echo Jane Lane')
+      .its('stdout').should('contain', 'Jane Lane')
+
+    if (Cypress.platform === 'win32') {
+      cy.exec(`print ${Cypress.config('configFile')}`)
+        .its('stderr').should('be.empty')
+    } else {
+      cy.exec(`cat ${Cypress.config('configFile')}`)
+        .its('stderr').should('be.empty')
+
+      cy.exec('pwd')
+        .its('code').should('eq', 0)
+    }
+  })
+
+  it('cy.focused() - get the DOM element that has focus', () => {
+    // https://on.cypress.io/focused
+    cy.get('.misc-form').find('#name').click()
+    cy.focused().should('have.id', 'name')
+
+    cy.get('.misc-form').find('#description').click()
+    cy.focused().should('have.id', 'description')
+  })
+
+  context('Cypress.Screenshot', function () {
+    it('cy.screenshot() - take a screenshot', () => {
+      // https://on.cypress.io/screenshot
+      cy.screenshot('my-image')
+    })
+
+    it('Cypress.Screenshot.defaults() - change default config of screenshots', function () {
+      Cypress.Screenshot.defaults({
+        blackout: ['.foo'],
+        capture: 'viewport',
+        clip: { x: 0, y: 0, width: 200, height: 200 },
+        scale: false,
+        disableTimersAndAnimations: true,
+        screenshotOnRunFailure: true,
+        onBeforeScreenshot () { },
+        onAfterScreenshot () { },
+      })
+    })
+  })
+
+  it('cy.wrap() - wrap an object', () => {
+    // https://on.cypress.io/wrap
+    cy.wrap({ foo: 'bar' })
+      .should('have.property', 'foo')
+      .and('include', 'bar')
+  })
+})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/navigation.cy.js b/packages/example/cypress/e2e/2-advanced-examples/navigation.cy.js
new file mode 100644
index 000000000000..d9c9d7d81e07
--- /dev/null
+++ b/packages/example/cypress/e2e/2-advanced-examples/navigation.cy.js
@@ -0,0 +1,55 @@
+/// <reference types="cypress" />
+
+context('Navigation', () => {
+  beforeEach(() => {
+    cy.visit('https://example.cypress.io')
+    cy.get('.navbar-nav').contains('Commands').click()
+    cy.get('.dropdown-menu').contains('Navigation').click()
+  })
+
+  it('cy.go() - go back or forward in the browser\'s history', () => {
+    // https://on.cypress.io/go
+
+    cy.location('pathname').should('include', 'navigation')
+
+    cy.go('back')
+    cy.location('pathname').should('not.include', 'navigation')
+
+    cy.go('forward')
+    cy.location('pathname').should('include', 'navigation')
+
+    // clicking back
+    cy.go(-1)
+    cy.location('pathname').should('not.include', 'navigation')
+
+    // clicking forward
+    cy.go(1)
+    cy.location('pathname').should('include', 'navigation')
+  })
+
+  it('cy.reload() - reload the page', () => {
+    // https://on.cypress.io/reload
+    cy.reload()
+
+    // reload the page without using the cache
+    cy.reload(true)
+  })
+
+  it('cy.visit() - visit a remote url', () => {
+    // https://on.cypress.io/visit
+
+    // Visit any sub-domain of your current domain
+    // Pass options to the visit
+    cy.visit('https://example.cypress.io/commands/navigation', {
+      timeout: 50000, // increase total time for the visit to resolve
+      onBeforeLoad (contentWindow) {
+        // contentWindow is the remote page's window object
+        expect(typeof contentWindow === 'object').to.be.true
+      },
+      onLoad (contentWindow) {
+        // contentWindow is the remote page's window object
+        expect(typeof contentWindow === 'object').to.be.true
+      },
+    })
+  })
+})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/network_requests.cy.js b/packages/example/cypress/e2e/2-advanced-examples/network_requests.cy.js
new file mode 100644
index 000000000000..11213a0e852a
--- /dev/null
+++ b/packages/example/cypress/e2e/2-advanced-examples/network_requests.cy.js
@@ -0,0 +1,163 @@
+/// <reference types="cypress" />
+
+context('Network Requests', () => {
+  beforeEach(() => {
+    cy.visit('https://example.cypress.io/commands/network-requests')
+  })
+
+  // Manage HTTP requests in your app
+
+  it('cy.request() - make an XHR request', () => {
+    // https://on.cypress.io/request
+    cy.request('https://jsonplaceholder.cypress.io/comments')
+      .should((response) => {
+        expect(response.status).to.eq(200)
+        // the server sometimes gets an extra comment posted from another machine
+        // which gets returned as 1 extra object
+        expect(response.body).to.have.property('length').and.be.oneOf([500, 501])
+        expect(response).to.have.property('headers')
+        expect(response).to.have.property('duration')
+      })
+  })
+
+  it('cy.request() - verify response using BDD syntax', () => {
+    cy.request('https://jsonplaceholder.cypress.io/comments')
+    .then((response) => {
+      // https://on.cypress.io/assertions
+      expect(response).property('status').to.equal(200)
+      expect(response).property('body').to.have.property('length').and.be.oneOf([500, 501])
+      expect(response).to.include.keys('headers', 'duration')
+    })
+  })
+
+  it('cy.request() with query parameters', () => {
+    // will execute request
+    // https://jsonplaceholder.cypress.io/comments?postId=1&id=3
+    cy.request({
+      url: 'https://jsonplaceholder.cypress.io/comments',
+      qs: {
+        postId: 1,
+        id: 3,
+      },
+    })
+    .its('body')
+    .should('be.an', 'array')
+    .and('have.length', 1)
+    .its('0') // yields first element of the array
+    .should('contain', {
+      postId: 1,
+      id: 3,
+    })
+  })
+
+  it('cy.request() - pass result to the second request', () => {
+    // first, let's find out the userId of the first user we have
+    cy.request('https://jsonplaceholder.cypress.io/users?_limit=1')
+      .its('body') // yields the response object
+      .its('0') // yields the first element of the returned list
+      // the above two commands its('body').its('0')
+      // can be written as its('body.0')
+      // if you do not care about TypeScript checks
+      .then((user) => {
+        expect(user).property('id').to.be.a('number')
+        // make a new post on behalf of the user
+        cy.request('POST', 'https://jsonplaceholder.cypress.io/posts', {
+          userId: user.id,
+          title: 'Cypress Test Runner',
+          body: 'Fast, easy and reliable testing for anything that runs in a browser.',
+        })
+      })
+      // note that the value here is the returned value of the 2nd request
+      // which is the new post object
+      .then((response) => {
+        expect(response).property('status').to.equal(201) // new entity created
+        expect(response).property('body').to.contain({
+          title: 'Cypress Test Runner',
+        })
+
+        // we don't know the exact post id - only that it will be > 100
+        // since JSONPlaceholder has built-in 100 posts
+        expect(response.body).property('id').to.be.a('number')
+          .and.to.be.gt(100)
+
+        // we don't know the user id here - since it was in above closure
+        // so in this test just confirm that the property is there
+        expect(response.body).property('userId').to.be.a('number')
+      })
+  })
+
+  it('cy.request() - save response in the shared test context', () => {
+    // https://on.cypress.io/variables-and-aliases
+    cy.request('https://jsonplaceholder.cypress.io/users?_limit=1')
+      .its('body').its('0') // yields the first element of the returned list
+      .as('user') // saves the object in the test context
+      .then(function () {
+        // NOTE 👀
+        //  By the time this callback runs the "as('user')" command
+        //  has saved the user object in the test context.
+        //  To access the test context we need to use
+        //  the "function () { ... }" callback form,
+        //  otherwise "this" points at a wrong or undefined object!
+        cy.request('POST', 'https://jsonplaceholder.cypress.io/posts', {
+          userId: this.user.id,
+          title: 'Cypress Test Runner',
+          body: 'Fast, easy and reliable testing for anything that runs in a browser.',
+        })
+        .its('body').as('post') // save the new post from the response
+      })
+      .then(function () {
+        // When this callback runs, both "cy.request" API commands have finished
+        // and the test context has "user" and "post" objects set.
+        // Let's verify them.
+        expect(this.post, 'post has the right user id').property('userId').to.equal(this.user.id)
+      })
+  })
+
+  it('cy.intercept() - route responses to matching requests', () => {
+    // https://on.cypress.io/intercept
+
+    let message = 'whoa, this comment does not exist'
+
+    // Listen to GET to comments/1
+    cy.intercept('GET', '**/comments/*').as('getComment')
+
+    // we have code that gets a comment when
+    // the button is clicked in scripts.js
+    cy.get('.network-btn').click()
+
+    // https://on.cypress.io/wait
+    cy.wait('@getComment').its('response.statusCode').should('be.oneOf', [200, 304])
+
+    // Listen to POST to comments
+    cy.intercept('POST', '**/comments').as('postComment')
+
+    // we have code that posts a comment when
+    // the button is clicked in scripts.js
+    cy.get('.network-post').click()
+    cy.wait('@postComment').should(({ request, response }) => {
+      expect(request.body).to.include('email')
+      expect(request.headers).to.have.property('content-type')
+      expect(response && response.body).to.have.property('name', 'Using POST in cy.intercept()')
+    })
+
+    // Stub a response to PUT comments/ ****
+    cy.intercept({
+      method: 'PUT',
+      url: '**/comments/*',
+    }, {
+      statusCode: 404,
+      body: { error: message },
+      headers: { 'access-control-allow-origin': '*' },
+      delayMs: 500,
+    }).as('putComment')
+
+    // we have code that puts a comment when
+    // the button is clicked in scripts.js
+    cy.get('.network-put').click()
+
+    cy.wait('@putComment')
+
+    // our 404 statusCode logic in scripts.js executed
+    cy.get('.network-put-comment').should('contain', message)
+  })
+})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/querying.cy.js b/packages/example/cypress/e2e/2-advanced-examples/querying.cy.js
new file mode 100644
index 000000000000..00970480f6c8
--- /dev/null
+++ b/packages/example/cypress/e2e/2-advanced-examples/querying.cy.js
@@ -0,0 +1,114 @@
+/// <reference types="cypress" />
+
+context('Querying', () => {
+  beforeEach(() => {
+    cy.visit('https://example.cypress.io/commands/querying')
+  })
+
+  // The most commonly used query is 'cy.get()', you can
+  // think of this like the '$' in jQuery
+
+  it('cy.get() - query DOM elements', () => {
+    // https://on.cypress.io/get
+
+    cy.get('#query-btn').should('contain', 'Button')
+
+    cy.get('.query-btn').should('contain', 'Button')
+
+    cy.get('#querying .well>button:first').should('contain', 'Button')
+    //              ↲
+    // Use CSS selectors just like jQuery
+
+    cy.get('[data-test-id="test-example"]').should('have.class', 'example')
+
+    // 'cy.get()' yields jQuery object, you can get its attribute
+    // by invoking `.attr()` method
+    cy.get('[data-test-id="test-example"]')
+      .invoke('attr', 'data-test-id')
+      .should('equal', 'test-example')
+
+    // or you can get element's CSS property
+    cy.get('[data-test-id="test-example"]')
+      .invoke('css', 'position')
+      .should('equal', 'static')
+
+    // or use assertions directly during 'cy.get()'
+    // https://on.cypress.io/assertions
+    cy.get('[data-test-id="test-example"]')
+      .should('have.attr', 'data-test-id', 'test-example')
+      .and('have.css', 'position', 'static')
+  })
+
+  it('cy.contains() - query DOM elements with matching content', () => {
+    // https://on.cypress.io/contains
+    cy.get('.query-list')
+      .contains('bananas')
+      .should('have.class', 'third')
+
+    // we can pass a regexp to `.contains()`
+    cy.get('.query-list')
+      .contains(/^b\w+/)
+      .should('have.class', 'third')
+
+    cy.get('.query-list')
+      .contains('apples')
+      .should('have.class', 'first')
+
+    // passing a selector to contains will
+    // yield the selector containing the text
+    cy.get('#querying')
+      .contains('ul', 'oranges')
+      .should('have.class', 'query-list')
+
+    cy.get('.query-button')
+      .contains('Save Form')
+      .should('have.class', 'btn')
+  })
+
+  it('.within() - query DOM elements within a specific element', () => {
+    // https://on.cypress.io/within
+    cy.get('.query-form').within(() => {
+      cy.get('input:first').should('have.attr', 'placeholder', 'Email')
+      cy.get('input:last').should('have.attr', 'placeholder', 'Password')
+    })
+  })
+
+  it('cy.root() - query the root DOM element', () => {
+    // https://on.cypress.io/root
+
+    // By default, root is the document
+    cy.root().should('match', 'html')
+
+    cy.get('.query-ul').within(() => {
+      // In this within, the root is now the ul DOM element
+      cy.root().should('have.class', 'query-ul')
+    })
+  })
+
+  it('best practices - selecting elements', () => {
+    // https://on.cypress.io/best-practices#Selecting-Elements
+    cy.get('[data-cy=best-practices-selecting-elements]').within(() => {
+      // Worst - too generic, no context
+      cy.get('button').click()
+
+      // Bad. Coupled to styling. Highly subject to change.
+      cy.get('.btn.btn-large').click()
+
+      // Average. Coupled to the `name` attribute which has HTML semantics.
+      cy.get('[name=submission]').click()
+
+      // Better. But still coupled to styling or JS event listeners.
+      cy.get('#main').click()
+
+      // Slightly better. Uses an ID but also ensures the element
+      // has an ARIA role attribute
+      cy.get('#main[role=button]').click()
+
+      // Much better. But still coupled to text content that may change.
+      cy.contains('Submit').click()
+
+      // Best. Insulated from all changes.
+      cy.get('[data-cy=submit]').click()
+    })
+  })
+})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/spies_stubs_clocks.cy.js b/packages/example/cypress/e2e/2-advanced-examples/spies_stubs_clocks.cy.js
new file mode 100644
index 000000000000..6186f3a50959
--- /dev/null
+++ b/packages/example/cypress/e2e/2-advanced-examples/spies_stubs_clocks.cy.js
@@ -0,0 +1,204 @@
+/// <reference types="cypress" />
+
+context('Spies, Stubs, and Clock', () => {
+  it('cy.spy() - wrap a method in a spy', () => {
+    // https://on.cypress.io/spy
+    cy.visit('https://example.cypress.io/commands/spies-stubs-clocks')
+
+    const obj = {
+      foo () {},
+    }
+
+    const spy = cy.spy(obj, 'foo').as('anyArgs')
+
+    obj.foo()
+
+    expect(spy).to.be.called
+  })
+
+  it('cy.spy() retries until assertions pass', () => {
+    cy.visit('https://example.cypress.io/commands/spies-stubs-clocks')
+
+    const obj = {
+      /**
+       * Prints the argument passed
+       * @param x {any}
+      */
+      foo (x) {
+        console.log('obj.foo called with', x)
+      },
+    }
+
+    cy.spy(obj, 'foo').as('foo')
+
+    setTimeout(() => {
+      obj.foo('first')
+    }, 500)
+
+    setTimeout(() => {
+      obj.foo('second')
+    }, 2500)
+
+    cy.get('@foo').should('have.been.calledTwice')
+  })
+
+  it('cy.stub() - create a stub and/or replace a function with stub', () => {
+    // https://on.cypress.io/stub
+    cy.visit('https://example.cypress.io/commands/spies-stubs-clocks')
+
+    const obj = {
+      /**
+       * prints both arguments to the console
+       * @param a {string}
+       * @param b {string}
+      */
+      foo (a, b) {
+        console.log('a', a, 'b', b)
+      },
+    }
+
+    const stub = cy.stub(obj, 'foo').as('foo')
+
+    obj.foo('foo', 'bar')
+
+    expect(stub).to.be.called
+  })
+
+  it('cy.clock() - control time in the browser', () => {
+    // https://on.cypress.io/clock
+
+    // create the date in UTC so it's always the same
+    // no matter what local timezone the browser is running in
+    const now = new Date(Date.UTC(2017, 2, 14)).getTime()
+
+    cy.clock(now)
+    cy.visit('https://example.cypress.io/commands/spies-stubs-clocks')
+    cy.get('#clock-div').click()
+    cy.get('#clock-div')
+      .should('have.text', '1489449600')
+  })
+
+  it('cy.tick() - move time in the browser', () => {
+    // https://on.cypress.io/tick
+
+    // create the date in UTC so it's always the same
+    // no matter what local timezone the browser is running in
+    const now = new Date(Date.UTC(2017, 2, 14)).getTime()
+
+    cy.clock(now)
+    cy.visit('https://example.cypress.io/commands/spies-stubs-clocks')
+    cy.get('#tick-div').click()
+    cy.get('#tick-div')
+      .should('have.text', '1489449600')
+
+    cy.tick(10000) // 10 seconds passed
+    cy.get('#tick-div').click()
+    cy.get('#tick-div')
+      .should('have.text', '1489449610')
+  })
+
+  it('cy.stub() matches depending on arguments', () => {
+    // see all possible matchers at
+    // https://sinonjs.org/releases/latest/matchers/
+    const greeter = {
+      /**
+       * Greets a person
+       * @param {string} name
+      */
+      greet (name) {
+        return `Hello, ${name}!`
+      },
+    }
+
+    cy.stub(greeter, 'greet')
+      .callThrough() // if you want non-matched calls to call the real method
+      .withArgs(Cypress.sinon.match.string).returns('Hi')
+      .withArgs(Cypress.sinon.match.number).throws(new Error('Invalid name'))
+
+    expect(greeter.greet('World')).to.equal('Hi')
+    expect(() => greeter.greet(42)).to.throw('Invalid name')
+    expect(greeter.greet).to.have.been.calledTwice
+
+    // non-matched calls goes the actual method
+    expect(greeter.greet()).to.equal('Hello, undefined!')
+  })
+
+  it('matches call arguments using Sinon matchers', () => {
+    // see all possible matchers at
+    // https://sinonjs.org/releases/latest/matchers/
+    const calculator = {
+      /**
+       * returns the sum of two arguments
+       * @param a {number}
+       * @param b {number}
+      */
+      add (a, b) {
+        return a + b
+      },
+    }
+
+    const spy = cy.spy(calculator, 'add').as('add')
+
+    expect(calculator.add(2, 3)).to.equal(5)
+
+    // if we want to assert the exact values used during the call
+    expect(spy).to.be.calledWith(2, 3)
+
+    // let's confirm "add" method was called with two numbers
+    expect(spy).to.be.calledWith(Cypress.sinon.match.number, Cypress.sinon.match.number)
+
+    // alternatively, provide the value to match
+    expect(spy).to.be.calledWith(Cypress.sinon.match(2), Cypress.sinon.match(3))
+
+    // match any value
+    expect(spy).to.be.calledWith(Cypress.sinon.match.any, 3)
+
+    // match any value from a list
+    expect(spy).to.be.calledWith(Cypress.sinon.match.in([1, 2, 3]), 3)
+
+    /**
+     * Returns true if the given number is even
+     * @param {number} x
+     */
+    const isEven = (x) => x % 2 === 0
+
+    // expect the value to pass a custom predicate function
+    // the second argument to "sinon.match(predicate, message)" is
+    // shown if the predicate does not pass and assertion fails
+    expect(spy).to.be.calledWith(Cypress.sinon.match(isEven, 'isEven'), 3)
+
+    /**
+     * Returns a function that checks if a given number is larger than the limit
+     * @param {number} limit
+     * @returns {(x: number) => boolean}
+     */
+    const isGreaterThan = (limit) => (x) => x > limit
+
+    /**
+     * Returns a function that checks if a given number is less than the limit
+     * @param {number} limit
+     * @returns {(x: number) => boolean}
+     */
+    const isLessThan = (limit) => (x) => x < limit
+
+    // you can combine several matchers using "and", "or"
+    expect(spy).to.be.calledWith(
+      Cypress.sinon.match.number,
+      Cypress.sinon.match(isGreaterThan(2), '> 2').and(Cypress.sinon.match(isLessThan(4), '< 4')),
+    )
+
+    expect(spy).to.be.calledWith(
+      Cypress.sinon.match.number,
+      Cypress.sinon.match(isGreaterThan(200), '> 200').or(Cypress.sinon.match(3)),
+    )
+
+    // matchers can be used from BDD assertions
+    cy.get('@add').should('have.been.calledWith',
+      Cypress.sinon.match.number, Cypress.sinon.match(3))
+
+    // you can alias matchers for shorter test code
+    const { match: M } = Cypress.sinon
+
+    cy.get('@add').should('have.been.calledWith', M.number, M(3))
+  })
+})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/storage.cy.js b/packages/example/cypress/e2e/2-advanced-examples/storage.cy.js
new file mode 100644
index 000000000000..0101a63e4ede
--- /dev/null
+++ b/packages/example/cypress/e2e/2-advanced-examples/storage.cy.js
@@ -0,0 +1,117 @@
+/// <reference types="cypress" />
+
+context('Local Storage / Session Storage', () => {
+  beforeEach(() => {
+    cy.visit('https://example.cypress.io/commands/storage')
+  })
+  // Although localStorage is automatically cleared
+  // in between tests to maintain a clean state
+  // sometimes we need to clear localStorage manually
+
+  it('cy.clearLocalStorage() - clear all data in localStorage for the current origin', () => {
+    // https://on.cypress.io/clearlocalstorage
+    cy.get('.ls-btn').click()
+    cy.get('.ls-btn').should(() => {
+      expect(localStorage.getItem('prop1')).to.eq('red')
+      expect(localStorage.getItem('prop2')).to.eq('blue')
+      expect(localStorage.getItem('prop3')).to.eq('magenta')
+    })
+
+    cy.clearLocalStorage()
+    cy.getAllLocalStorage().should(() => {
+      expect(localStorage.getItem('prop1')).to.be.null
+      expect(localStorage.getItem('prop2')).to.be.null
+      expect(localStorage.getItem('prop3')).to.be.null
+    })
+
+    cy.get('.ls-btn').click()
+    cy.get('.ls-btn').should(() => {
+      expect(localStorage.getItem('prop1')).to.eq('red')
+      expect(localStorage.getItem('prop2')).to.eq('blue')
+      expect(localStorage.getItem('prop3')).to.eq('magenta')
+    })
+
+    // Clear key matching string in localStorage
+    cy.clearLocalStorage('prop1')
+    cy.getAllLocalStorage().should(() => {
+      expect(localStorage.getItem('prop1')).to.be.null
+      expect(localStorage.getItem('prop2')).to.eq('blue')
+      expect(localStorage.getItem('prop3')).to.eq('magenta')
+    })
+
+    cy.get('.ls-btn').click()
+    cy.get('.ls-btn').should(() => {
+      expect(localStorage.getItem('prop1')).to.eq('red')
+      expect(localStorage.getItem('prop2')).to.eq('blue')
+      expect(localStorage.getItem('prop3')).to.eq('magenta')
+    })
+
+    // Clear keys matching regex in localStorage
+    cy.clearLocalStorage(/prop1|2/)
+    cy.getAllLocalStorage().should(() => {
+      expect(localStorage.getItem('prop1')).to.be.null
+      expect(localStorage.getItem('prop2')).to.be.null
+      expect(localStorage.getItem('prop3')).to.eq('magenta')
+    })
+  })
+
+  it('cy.getAllLocalStorage() - get all data in localStorage for all origins', () => {
+    // https://on.cypress.io/getalllocalstorage
+    cy.get('.ls-btn').click()
+
+    // getAllLocalStorage() yields a map of origins to localStorage values
+    cy.getAllLocalStorage().should((storageMap) => {
+      expect(storageMap).to.deep.equal({
+        // other origins will also be present if localStorage is set on them
+        'https://example.cypress.io': {
+          'prop1': 'red',
+          'prop2': 'blue',
+          'prop3': 'magenta',
+        },
+      })
+    })
+  })
+
+  it('cy.clearAllLocalStorage() - clear all data in localStorage for all origins', () => {
+    // https://on.cypress.io/clearalllocalstorage
+    cy.get('.ls-btn').click()
+
+    // clearAllLocalStorage() yields null
+    cy.clearAllLocalStorage()
+    cy.getAllLocalStorage().should(() => {
+      expect(localStorage.getItem('prop1')).to.be.null
+      expect(localStorage.getItem('prop2')).to.be.null
+      expect(localStorage.getItem('prop3')).to.be.null
+    })
+  })
+
+  it('cy.getAllSessionStorage() - get all data in sessionStorage for all origins', () => {
+    // https://on.cypress.io/getallsessionstorage
+    cy.get('.ls-btn').click()
+
+    // getAllSessionStorage() yields a map of origins to sessionStorage values
+    cy.getAllSessionStorage().should((storageMap) => {
+      expect(storageMap).to.deep.equal({
+        // other origins will also be present if sessionStorage is set on them
+        'https://example.cypress.io': {
+          'prop4': 'cyan',
+          'prop5': 'yellow',
+          'prop6': 'black',
+        },
+      })
+    })
+  })
+
+  it('cy.clearAllSessionStorage() - clear all data in sessionStorage for all origins', () => {
+    // https://on.cypress.io/clearallsessionstorage
+    cy.get('.ls-btn').click()
+
+    // clearAllSessionStorage() yields null
+    cy.clearAllSessionStorage()
+    cy.getAllSessionStorage().should(() => {
+      expect(sessionStorage.getItem('prop4')).to.be.null
+      expect(sessionStorage.getItem('prop5')).to.be.null
+      expect(sessionStorage.getItem('prop6')).to.be.null
+    })
+  })
+})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/traversal.cy.js b/packages/example/cypress/e2e/2-advanced-examples/traversal.cy.js
new file mode 100644
index 000000000000..0a3b9d33062d
--- /dev/null
+++ b/packages/example/cypress/e2e/2-advanced-examples/traversal.cy.js
@@ -0,0 +1,121 @@
+/// <reference types="cypress" />
+
+context('Traversal', () => {
+  beforeEach(() => {
+    cy.visit('https://example.cypress.io/commands/traversal')
+  })
+
+  it('.children() - get child DOM elements', () => {
+    // https://on.cypress.io/children
+    cy.get('.traversal-breadcrumb')
+      .children('.active')
+      .should('contain', 'Data')
+  })
+
+  it('.closest() - get closest ancestor DOM element', () => {
+    // https://on.cypress.io/closest
+    cy.get('.traversal-badge')
+      .closest('ul')
+      .should('have.class', 'list-group')
+  })
+
+  it('.eq() - get a DOM element at a specific index', () => {
+    // https://on.cypress.io/eq
+    cy.get('.traversal-list>li')
+      .eq(1).should('contain', 'siamese')
+  })
+
+  it('.filter() - get DOM elements that match the selector', () => {
+    // https://on.cypress.io/filter
+    cy.get('.traversal-nav>li')
+      .filter('.active').should('contain', 'About')
+  })
+
+  it('.find() - get descendant DOM elements of the selector', () => {
+    // https://on.cypress.io/find
+    cy.get('.traversal-pagination')
+      .find('li').find('a')
+      .should('have.length', 7)
+  })
+
+  it('.first() - get first DOM element', () => {
+    // https://on.cypress.io/first
+    cy.get('.traversal-table td')
+      .first().should('contain', '1')
+  })
+
+  it('.last() - get last DOM element', () => {
+    // https://on.cypress.io/last
+    cy.get('.traversal-buttons .btn')
+      .last().should('contain', 'Submit')
+  })
+
+  it('.next() - get next sibling DOM element', () => {
+    // https://on.cypress.io/next
+    cy.get('.traversal-ul')
+      .contains('apples').next().should('contain', 'oranges')
+  })
+
+  it('.nextAll() - get all next sibling DOM elements', () => {
+    // https://on.cypress.io/nextall
+    cy.get('.traversal-next-all')
+      .contains('oranges')
+      .nextAll().should('have.length', 3)
+  })
+
+  it('.nextUntil() - get next sibling DOM elements until next el', () => {
+    // https://on.cypress.io/nextuntil
+    cy.get('#veggies')
+      .nextUntil('#nuts').should('have.length', 3)
+  })
+
+  it('.not() - remove DOM elements from set of DOM elements', () => {
+    // https://on.cypress.io/not
+    cy.get('.traversal-disabled .btn')
+      .not('[disabled]').should('not.contain', 'Disabled')
+  })
+
+  it('.parent() - get parent DOM element from DOM elements', () => {
+    // https://on.cypress.io/parent
+    cy.get('.traversal-mark')
+      .parent().should('contain', 'Morbi leo risus')
+  })
+
+  it('.parents() - get parent DOM elements from DOM elements', () => {
+    // https://on.cypress.io/parents
+    cy.get('.traversal-cite')
+      .parents().should('match', 'blockquote')
+  })
+
+  it('.parentsUntil() - get parent DOM elements from DOM elements until el', () => {
+    // https://on.cypress.io/parentsuntil
+    cy.get('.clothes-nav')
+      .find('.active')
+      .parentsUntil('.clothes-nav')
+      .should('have.length', 2)
+  })
+
+  it('.prev() - get previous sibling DOM element', () => {
+    // https://on.cypress.io/prev
+    cy.get('.birds').find('.active')
+      .prev().should('contain', 'Lorikeets')
+  })
+
+  it('.prevAll() - get all previous sibling DOM elements', () => {
+    // https://on.cypress.io/prevall
+    cy.get('.fruits-list').find('.third')
+      .prevAll().should('have.length', 2)
+  })
+
+  it('.prevUntil() - get all previous sibling DOM elements until el', () => {
+    // https://on.cypress.io/prevuntil
+    cy.get('.foods-list').find('#nuts')
+      .prevUntil('#veggies').should('have.length', 3)
+  })
+
+  it('.siblings() - get all sibling DOM elements', () => {
+    // https://on.cypress.io/siblings
+    cy.get('.traversal-pills .active')
+      .siblings().should('have.length', 2)
+  })
+})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/utilities.cy.js b/packages/example/cypress/e2e/2-advanced-examples/utilities.cy.js
new file mode 100644
index 000000000000..50b224f7c3d8
--- /dev/null
+++ b/packages/example/cypress/e2e/2-advanced-examples/utilities.cy.js
@@ -0,0 +1,107 @@
+/// <reference types="cypress" />
+
+context('Utilities', () => {
+  beforeEach(() => {
+    cy.visit('https://example.cypress.io/utilities')
+  })
+
+  it('Cypress._ - call a lodash method', () => {
+    // https://on.cypress.io/_
+    cy.request('https://jsonplaceholder.cypress.io/users')
+      .then((response) => {
+        let ids = Cypress._.chain(response.body).map('id').take(3).value()
+
+        expect(ids).to.deep.eq([1, 2, 3])
+      })
+  })
+
+  it('Cypress.$ - call a jQuery method', () => {
+    // https://on.cypress.io/$
+    let $li = Cypress.$('.utility-jquery li:first')
+
+    cy.wrap($li).should('not.have.class', 'active')
+    cy.wrap($li).click()
+    cy.wrap($li).should('have.class', 'active')
+  })
+
+  it('Cypress.Blob - blob utilities and base64 string conversion', () => {
+    // https://on.cypress.io/blob
+    cy.get('.utility-blob').then(($div) => {
+      // https://github.com/nolanlawson/blob-util#imgSrcToDataURL
+      // get the dataUrl string for the javascript-logo
+      return Cypress.Blob.imgSrcToDataURL('https://example.cypress.io/assets/img/javascript-logo.png', undefined, 'anonymous')
+      .then((dataUrl) => {
+        // create an <img> element and set its src to the dataUrl
+        let img = Cypress.$('<img />', { src: dataUrl })
+
+        // need to explicitly return cy here since we are initially returning
+        // the Cypress.Blob.imgSrcToDataURL promise to our test
+        // append the image
+        $div.append(img)
+
+        cy.get('.utility-blob img').click()
+        cy.get('.utility-blob img').should('have.attr', 'src', dataUrl)
+      })
+    })
+  })
+
+  it('Cypress.minimatch - test out glob patterns against strings', () => {
+    // https://on.cypress.io/minimatch
+    let matching = Cypress.minimatch('/users/1/comments', '/users/*/comments', {
+      matchBase: true,
+    })
+
+    expect(matching, 'matching wildcard').to.be.true
+
+    matching = Cypress.minimatch('/users/1/comments/2', '/users/*/comments', {
+      matchBase: true,
+    })
+
+    expect(matching, 'comments').to.be.false
+
+    // ** matches against all downstream path segments
+    matching = Cypress.minimatch('/foo/bar/baz/123/quux?a=b&c=2', '/foo/**', {
+      matchBase: true,
+    })
+
+    expect(matching, 'comments').to.be.true
+
+    // whereas * matches only the next path segment
+
+    matching = Cypress.minimatch('/foo/bar/baz/123/quux?a=b&c=2', '/foo/*', {
+      matchBase: false,
+    })
+
+    expect(matching, 'comments').to.be.false
+  })
+
+  it('Cypress.Promise - instantiate a bluebird promise', () => {
+    // https://on.cypress.io/promise
+    let waited = false
+
+    /**
+     * @return Bluebird<string>
+     */
+    function waitOneSecond () {
+      // return a promise that resolves after 1 second
+      return new Cypress.Promise((resolve, reject) => {
+        setTimeout(() => {
+          // set waited to true
+          waited = true
+
+          // resolve with 'foo' string
+          resolve('foo')
+        }, 1000)
+      })
+    }
+
+    cy.then(() => {
+      // return a promise to cy.then() that
+      // is awaited until it resolves
+      return waitOneSecond().then((str) => {
+        expect(str).to.eq('foo')
+        expect(waited).to.be.true
+      })
+    })
+  })
+})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/viewport.cy.js b/packages/example/cypress/e2e/2-advanced-examples/viewport.cy.js
new file mode 100644
index 000000000000..a06ae206a21a
--- /dev/null
+++ b/packages/example/cypress/e2e/2-advanced-examples/viewport.cy.js
@@ -0,0 +1,58 @@
+/// <reference types="cypress" />
+context('Viewport', () => {
+  beforeEach(() => {
+    cy.visit('https://example.cypress.io/commands/viewport')
+  })
+
+  it('cy.viewport() - set the viewport size and dimension', () => {
+    // https://on.cypress.io/viewport
+
+    cy.get('#navbar').should('be.visible')
+    cy.viewport(320, 480)
+
+    // the navbar should have collapse since our screen is smaller
+    cy.get('#navbar').should('not.be.visible')
+    cy.get('.navbar-toggle').should('be.visible').click()
+    cy.get('.nav').find('a').should('be.visible')
+
+    // lets see what our app looks like on a super large screen
+    cy.viewport(2999, 2999)
+
+    // cy.viewport() accepts a set of preset sizes
+    // to easily set the screen to a device's width and height
+
+    // We added a cy.wait() between each viewport change so you can see
+    // the change otherwise it is a little too fast to see :)
+
+    cy.viewport('macbook-15')
+    cy.wait(200)
+    cy.viewport('macbook-13')
+    cy.wait(200)
+    cy.viewport('macbook-11')
+    cy.wait(200)
+    cy.viewport('ipad-2')
+    cy.wait(200)
+    cy.viewport('ipad-mini')
+    cy.wait(200)
+    cy.viewport('iphone-6+')
+    cy.wait(200)
+    cy.viewport('iphone-6')
+    cy.wait(200)
+    cy.viewport('iphone-5')
+    cy.wait(200)
+    cy.viewport('iphone-4')
+    cy.wait(200)
+    cy.viewport('iphone-3')
+    cy.wait(200)
+
+    // cy.viewport() accepts an orientation for all presets
+    // the default orientation is 'portrait'
+    cy.viewport('ipad-2', 'portrait')
+    cy.wait(200)
+    cy.viewport('iphone-4', 'landscape')
+    cy.wait(200)
+
+    // The viewport will be reset back to the default dimensions
+    // in between tests (the  default can be set in cypress.config.{js|ts})
+  })
+})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/waiting.cy.js b/packages/example/cypress/e2e/2-advanced-examples/waiting.cy.js
new file mode 100644
index 000000000000..21998f9fb666
--- /dev/null
+++ b/packages/example/cypress/e2e/2-advanced-examples/waiting.cy.js
@@ -0,0 +1,30 @@
+/// <reference types="cypress" />
+context('Waiting', () => {
+  beforeEach(() => {
+    cy.visit('https://example.cypress.io/commands/waiting')
+  })
+  // BE CAREFUL of adding unnecessary wait times.
+  // https://on.cypress.io/best-practices#Unnecessary-Waiting
+
+  // https://on.cypress.io/wait
+  it('cy.wait() - wait for a specific amount of time', () => {
+    cy.get('.wait-input1').type('Wait 1000ms after typing')
+    cy.wait(1000)
+    cy.get('.wait-input2').type('Wait 1000ms after typing')
+    cy.wait(1000)
+    cy.get('.wait-input3').type('Wait 1000ms after typing')
+    cy.wait(1000)
+  })
+
+  it('cy.wait() - wait for a specific route', () => {
+    // Listen to GET to comments/1
+    cy.intercept('GET', '**/comments/*').as('getComment')
+
+    // we have code that gets a comment when
+    // the button is clicked in scripts.js
+    cy.get('.network-btn').click()
+
+    // wait for GET comments/1
+    cy.wait('@getComment').its('response.statusCode').should('be.oneOf', [200, 304])
+  })
+})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/window.cy.js b/packages/example/cypress/e2e/2-advanced-examples/window.cy.js
new file mode 100644
index 000000000000..f94b64971db1
--- /dev/null
+++ b/packages/example/cypress/e2e/2-advanced-examples/window.cy.js
@@ -0,0 +1,22 @@
+/// <reference types="cypress" />
+
+context('Window', () => {
+  beforeEach(() => {
+    cy.visit('https://example.cypress.io/commands/window')
+  })
+
+  it('cy.window() - get the global window object', () => {
+    // https://on.cypress.io/window
+    cy.window().should('have.property', 'top')
+  })
+
+  it('cy.document() - get the document object', () => {
+    // https://on.cypress.io/document
+    cy.document().should('have.property', 'charset').and('eq', 'UTF-8')
+  })
+
+  it('cy.title() - get the title', () => {
+    // https://on.cypress.io/title
+    cy.title().should('include', 'Kitchen Sink')
+  })
+})
diff --git a/packages/example/cypress/fixtures/example.json b/packages/example/cypress/fixtures/example.json
new file mode 100644
index 000000000000..02e4254378e9
--- /dev/null
+++ b/packages/example/cypress/fixtures/example.json
@@ -0,0 +1,5 @@
+{
+  "name": "Using fixtures to represent data",
+  "email": "hello@cypress.io",
+  "body": "Fixtures are a great way to mock data for responses to routes"
+}
diff --git a/packages/example/cypress/support/commands.js b/packages/example/cypress/support/commands.js
new file mode 100644
index 000000000000..119ab03f7cda
--- /dev/null
+++ b/packages/example/cypress/support/commands.js
@@ -0,0 +1,25 @@
+// ***********************************************
+// This example commands.js shows you how to
+// create various custom commands and overwrite
+// existing commands.
+//
+// For more comprehensive examples of custom
+// commands please read more here:
+// https://on.cypress.io/custom-commands
+// ***********************************************
+//
+//
+// -- This is a parent command --
+// Cypress.Commands.add('login', (email, password) => { ... })
+//
+//
+// -- This is a child command --
+// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... })
+//
+//
+// -- This is a dual command --
+// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... })
+//
+//
+// -- This will overwrite an existing command --
+// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
diff --git a/packages/example/cypress/support/component.js b/packages/example/cypress/support/component.js
new file mode 100644
index 000000000000..5e450a7b1a4a
--- /dev/null
+++ b/packages/example/cypress/support/component.js
@@ -0,0 +1,20 @@
+// ***********************************************************
+// This example support/component.js is processed and
+// loaded automatically before your test files.
+//
+// This is a great place to put global configuration and
+// behavior that modifies Cypress.
+//
+// You can change the location of this file or turn off
+// automatically serving support files with the
+// 'supportFile' configuration option.
+//
+// You can read more here:
+// https://on.cypress.io/configuration
+// ***********************************************************
+
+// Import commands.js using ES2015 syntax:
+import './commands'
+
+// Alternatively you can use CommonJS syntax:
+// require('./commands')
diff --git a/packages/example/cypress/support/e2e.js b/packages/example/cypress/support/e2e.js
new file mode 100644
index 000000000000..d1dd1353e812
--- /dev/null
+++ b/packages/example/cypress/support/e2e.js
@@ -0,0 +1,20 @@
+// ***********************************************************
+// This example support/e2e.js is processed and
+// loaded automatically before your test files.
+//
+// This is a great place to put global configuration and
+// behavior that modifies Cypress.
+//
+// You can change the location of this file or turn off
+// automatically serving support files with the
+// 'supportFile' configuration option.
+//
+// You can read more here:
+// https://on.cypress.io/configuration
+// ***********************************************************
+
+// Import commands.js using ES2015 syntax:
+import './commands'
+
+// Alternatively you can use CommonJS syntax:
+// require('./commands')
diff --git a/packages/example/eslint.config.ts b/packages/example/eslint.config.ts
new file mode 100644
index 000000000000..8f92ca526ebe
--- /dev/null
+++ b/packages/example/eslint.config.ts
@@ -0,0 +1,18 @@
+import { baseConfig } from '../../eslint.config'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['app/**/*', 'build/**/*', 'cypress/**/*'],
+  },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['bin/*.js', 'eslint.config.ts', 'cypress.config.js', 'gulpfile.js', 'index.d.ts', 'index.js', 'lib/*.{js,ts}'],
+          maximumDefaultProjectFileMatchCount_THIS_WILL_SLOW_DOWN_LINTING: 10,
+        },
+      },
+    },
+  },
+]

From 45184c04faeff4423a70a35543235bfe0cc9a07e Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 10:10:01 -0500
Subject: [PATCH 046/127] rm

---
 .../cypress/e2e/1-getting-started/todo.cy.js  | 143 --------
 .../e2e/2-advanced-examples/actions.cy.js     | 321 ------------------
 .../e2e/2-advanced-examples/aliasing.cy.js    |  39 ---
 .../e2e/2-advanced-examples/assertions.cy.js  | 176 ----------
 .../e2e/2-advanced-examples/connectors.cy.js  |  98 ------
 .../e2e/2-advanced-examples/cookies.cy.js     | 118 -------
 .../e2e/2-advanced-examples/cypress_api.cy.js | 185 ----------
 .../e2e/2-advanced-examples/files.cy.js       |  85 -----
 .../e2e/2-advanced-examples/location.cy.js    |  32 --
 .../e2e/2-advanced-examples/misc.cy.js        |  90 -----
 .../e2e/2-advanced-examples/navigation.cy.js  |  55 ---
 .../network_requests.cy.js                    | 163 ---------
 .../e2e/2-advanced-examples/querying.cy.js    | 114 -------
 .../spies_stubs_clocks.cy.js                  | 204 -----------
 .../e2e/2-advanced-examples/storage.cy.js     | 117 -------
 .../e2e/2-advanced-examples/traversal.cy.js   | 121 -------
 .../e2e/2-advanced-examples/utilities.cy.js   | 107 ------
 .../e2e/2-advanced-examples/viewport.cy.js    |  58 ----
 .../e2e/2-advanced-examples/waiting.cy.js     |  30 --
 .../e2e/2-advanced-examples/window.cy.js      |  22 --
 .../example/cypress/fixtures/example.json     |   5 -
 packages/example/cypress/support/commands.js  |  25 --
 packages/example/cypress/support/component.js |  20 --
 packages/example/cypress/support/e2e.js       |  20 --
 24 files changed, 2348 deletions(-)
 delete mode 100644 packages/example/cypress/e2e/1-getting-started/todo.cy.js
 delete mode 100644 packages/example/cypress/e2e/2-advanced-examples/actions.cy.js
 delete mode 100644 packages/example/cypress/e2e/2-advanced-examples/aliasing.cy.js
 delete mode 100644 packages/example/cypress/e2e/2-advanced-examples/assertions.cy.js
 delete mode 100644 packages/example/cypress/e2e/2-advanced-examples/connectors.cy.js
 delete mode 100644 packages/example/cypress/e2e/2-advanced-examples/cookies.cy.js
 delete mode 100644 packages/example/cypress/e2e/2-advanced-examples/cypress_api.cy.js
 delete mode 100644 packages/example/cypress/e2e/2-advanced-examples/files.cy.js
 delete mode 100644 packages/example/cypress/e2e/2-advanced-examples/location.cy.js
 delete mode 100644 packages/example/cypress/e2e/2-advanced-examples/misc.cy.js
 delete mode 100644 packages/example/cypress/e2e/2-advanced-examples/navigation.cy.js
 delete mode 100644 packages/example/cypress/e2e/2-advanced-examples/network_requests.cy.js
 delete mode 100644 packages/example/cypress/e2e/2-advanced-examples/querying.cy.js
 delete mode 100644 packages/example/cypress/e2e/2-advanced-examples/spies_stubs_clocks.cy.js
 delete mode 100644 packages/example/cypress/e2e/2-advanced-examples/storage.cy.js
 delete mode 100644 packages/example/cypress/e2e/2-advanced-examples/traversal.cy.js
 delete mode 100644 packages/example/cypress/e2e/2-advanced-examples/utilities.cy.js
 delete mode 100644 packages/example/cypress/e2e/2-advanced-examples/viewport.cy.js
 delete mode 100644 packages/example/cypress/e2e/2-advanced-examples/waiting.cy.js
 delete mode 100644 packages/example/cypress/e2e/2-advanced-examples/window.cy.js
 delete mode 100644 packages/example/cypress/fixtures/example.json
 delete mode 100644 packages/example/cypress/support/commands.js
 delete mode 100644 packages/example/cypress/support/component.js
 delete mode 100644 packages/example/cypress/support/e2e.js

diff --git a/packages/example/cypress/e2e/1-getting-started/todo.cy.js b/packages/example/cypress/e2e/1-getting-started/todo.cy.js
deleted file mode 100644
index 4768ff923ece..000000000000
--- a/packages/example/cypress/e2e/1-getting-started/todo.cy.js
+++ /dev/null
@@ -1,143 +0,0 @@
-/// <reference types="cypress" />
-
-// Welcome to Cypress!
-//
-// This spec file contains a variety of sample tests
-// for a todo list app that are designed to demonstrate
-// the power of writing tests in Cypress.
-//
-// To learn more about how Cypress works and
-// what makes it such an awesome testing tool,
-// please read our getting started guide:
-// https://on.cypress.io/introduction-to-cypress
-
-describe('example to-do app', () => {
-  beforeEach(() => {
-    // Cypress starts out with a blank slate for each test
-    // so we must tell it to visit our website with the `cy.visit()` command.
-    // Since we want to visit the same URL at the start of all our tests,
-    // we include it in our beforeEach function so that it runs before each test
-    cy.visit('https://example.cypress.io/todo')
-  })
-
-  it('displays two todo items by default', () => {
-    // We use the `cy.get()` command to get all elements that match the selector.
-    // Then, we use `should` to assert that there are two matched items,
-    // which are the two default items.
-    cy.get('.todo-list li').should('have.length', 2)
-
-    // We can go even further and check that the default todos each contain
-    // the correct text. We use the `first` and `last` functions
-    // to get just the first and last matched elements individually,
-    // and then perform an assertion with `should`.
-    cy.get('.todo-list li').first().should('have.text', 'Pay electric bill')
-    cy.get('.todo-list li').last().should('have.text', 'Walk the dog')
-  })
-
-  it('can add new todo items', () => {
-    // We'll store our item text in a variable so we can reuse it
-    const newItem = 'Feed the cat'
-
-    // Let's get the input element and use the `type` command to
-    // input our new list item. After typing the content of our item,
-    // we need to type the enter key as well in order to submit the input.
-    // This input has a data-test attribute so we'll use that to select the
-    // element in accordance with best practices:
-    // https://on.cypress.io/selecting-elements
-    cy.get('[data-test=new-todo]').type(`${newItem}{enter}`)
-
-    // Now that we've typed our new item, let's check that it actually was added to the list.
-    // Since it's the newest item, it should exist as the last element in the list.
-    // In addition, with the two default items, we should have a total of 3 elements in the list.
-    // Since assertions yield the element that was asserted on,
-    // we can chain both of these assertions together into a single statement.
-    cy.get('.todo-list li')
-      .should('have.length', 3)
-      .last()
-      .should('have.text', newItem)
-  })
-
-  it('can check off an item as completed', () => {
-    // In addition to using the `get` command to get an element by selector,
-    // we can also use the `contains` command to get an element by its contents.
-    // However, this will yield the <label>, which is lowest-level element that contains the text.
-    // In order to check the item, we'll find the <input> element for this <label>
-    // by traversing up the dom to the parent element. From there, we can `find`
-    // the child checkbox <input> element and use the `check` command to check it.
-    cy.contains('Pay electric bill')
-      .parent()
-      .find('input[type=checkbox]')
-      .check()
-
-    // Now that we've checked the button, we can go ahead and make sure
-    // that the list element is now marked as completed.
-    // Again we'll use `contains` to find the <label> element and then use the `parents` command
-    // to traverse multiple levels up the dom until we find the corresponding <li> element.
-    // Once we get that element, we can assert that it has the completed class.
-    cy.contains('Pay electric bill')
-      .parents('li')
-      .should('have.class', 'completed')
-  })
-
-  context('with a checked task', () => {
-    beforeEach(() => {
-      // We'll take the command we used above to check off an element
-      // Since we want to perform multiple tests that start with checking
-      // one element, we put it in the beforeEach hook
-      // so that it runs at the start of every test.
-      cy.contains('Pay electric bill')
-        .parent()
-        .find('input[type=checkbox]')
-        .check()
-    })
-
-    it('can filter for uncompleted tasks', () => {
-      // We'll click on the "active" button in order to
-      // display only incomplete items
-      cy.contains('Active').click()
-
-      // After filtering, we can assert that there is only the one
-      // incomplete item in the list.
-      cy.get('.todo-list li')
-        .should('have.length', 1)
-        .first()
-        .should('have.text', 'Walk the dog')
-
-      // For good measure, let's also assert that the task we checked off
-      // does not exist on the page.
-      cy.contains('Pay electric bill').should('not.exist')
-    })
-
-    it('can filter for completed tasks', () => {
-      // We can perform similar steps as the test above to ensure
-      // that only completed tasks are shown
-      cy.contains('Completed').click()
-
-      cy.get('.todo-list li')
-        .should('have.length', 1)
-        .first()
-        .should('have.text', 'Pay electric bill')
-
-      cy.contains('Walk the dog').should('not.exist')
-    })
-
-    it('can delete all completed tasks', () => {
-      // First, let's click the "Clear completed" button
-      // `contains` is actually serving two purposes here.
-      // First, it's ensuring that the button exists within the dom.
-      // This button only appears when at least one task is checked
-      // so this command is implicitly verifying that it does exist.
-      // Second, it selects the button so we can click it.
-      cy.contains('Clear completed').click()
-
-      // Then we can make sure that there is only one element
-      // in the list and our element does not exist
-      cy.get('.todo-list li')
-        .should('have.length', 1)
-        .should('not.have.text', 'Pay electric bill')
-
-      // Finally, make sure that the clear button no longer exists.
-      cy.contains('Clear completed').should('not.exist')
-    })
-  })
-})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/actions.cy.js b/packages/example/cypress/e2e/2-advanced-examples/actions.cy.js
deleted file mode 100644
index 7a6ef7fbf41a..000000000000
--- a/packages/example/cypress/e2e/2-advanced-examples/actions.cy.js
+++ /dev/null
@@ -1,321 +0,0 @@
-/// <reference types="cypress" />
-
-context('Actions', () => {
-  beforeEach(() => {
-    cy.visit('https://example.cypress.io/commands/actions')
-  })
-
-  // https://on.cypress.io/interacting-with-elements
-
-  it('.type() - type into a DOM element', () => {
-    // https://on.cypress.io/type
-    cy.get('.action-email').type('fake@email.com')
-    cy.get('.action-email').should('have.value', 'fake@email.com')
-
-    // .type() with special character sequences
-    cy.get('.action-email').type('{leftarrow}{rightarrow}{uparrow}{downarrow}')
-    cy.get('.action-email').type('{del}{selectall}{backspace}')
-
-    // .type() with key modifiers
-    cy.get('.action-email').type('{alt}{option}') //these are equivalent
-    cy.get('.action-email').type('{ctrl}{control}') //these are equivalent
-    cy.get('.action-email').type('{meta}{command}{cmd}') //these are equivalent
-    cy.get('.action-email').type('{shift}')
-
-    // Delay each keypress by 0.1 sec
-    cy.get('.action-email').type('slow.typing@email.com', { delay: 100 })
-    cy.get('.action-email').should('have.value', 'slow.typing@email.com')
-
-    cy.get('.action-disabled')
-      // Ignore error checking prior to type
-      // like whether the input is visible or disabled
-      .type('disabled error checking', { force: true })
-    cy.get('.action-disabled').should('have.value', 'disabled error checking')
-  })
-
-  it('.focus() - focus on a DOM element', () => {
-    // https://on.cypress.io/focus
-    cy.get('.action-focus').focus()
-    cy.get('.action-focus').should('have.class', 'focus')
-      .prev().should('have.attr', 'style', 'color: orange;')
-  })
-
-  it('.blur() - blur off a DOM element', () => {
-    // https://on.cypress.io/blur
-    cy.get('.action-blur').type('About to blur')
-    cy.get('.action-blur').blur()
-    cy.get('.action-blur').should('have.class', 'error')
-      .prev().should('have.attr', 'style', 'color: red;')
-  })
-
-  it('.clear() - clears an input or textarea element', () => {
-    // https://on.cypress.io/clear
-    cy.get('.action-clear').type('Clear this text')
-    cy.get('.action-clear').should('have.value', 'Clear this text')
-    cy.get('.action-clear').clear()
-    cy.get('.action-clear').should('have.value', '')
-  })
-
-  it('.submit() - submit a form', () => {
-    // https://on.cypress.io/submit
-    cy.get('.action-form')
-      .find('[type="text"]').type('HALFOFF')
-
-    cy.get('.action-form').submit()
-    cy.get('.action-form').next().should('contain', 'Your form has been submitted!')
-  })
-
-  it('.click() - click on a DOM element', () => {
-    // https://on.cypress.io/click
-    cy.get('.action-btn').click()
-
-    // You can click on 9 specific positions of an element:
-    //  -----------------------------------
-    // | topLeft        top       topRight |
-    // |                                   |
-    // |                                   |
-    // |                                   |
-    // | left          center        right |
-    // |                                   |
-    // |                                   |
-    // |                                   |
-    // | bottomLeft   bottom   bottomRight |
-    //  -----------------------------------
-
-    // clicking in the center of the element is the default
-    cy.get('#action-canvas').click()
-
-    cy.get('#action-canvas').click('topLeft')
-    cy.get('#action-canvas').click('top')
-    cy.get('#action-canvas').click('topRight')
-    cy.get('#action-canvas').click('left')
-    cy.get('#action-canvas').click('right')
-    cy.get('#action-canvas').click('bottomLeft')
-    cy.get('#action-canvas').click('bottom')
-    cy.get('#action-canvas').click('bottomRight')
-
-    // .click() accepts an x and y coordinate
-    // that controls where the click occurs :)
-
-    cy.get('#action-canvas')
-    cy.get('#action-canvas').click(80, 75) // click 80px on x coord and 75px on y coord
-    cy.get('#action-canvas').click(170, 75)
-    cy.get('#action-canvas').click(80, 165)
-    cy.get('#action-canvas').click(100, 185)
-    cy.get('#action-canvas').click(125, 190)
-    cy.get('#action-canvas').click(150, 185)
-    cy.get('#action-canvas').click(170, 165)
-
-    // click multiple elements by passing multiple: true
-    cy.get('.action-labels>.label').click({ multiple: true })
-
-    // Ignore error checking prior to clicking
-    cy.get('.action-opacity>.btn').click({ force: true })
-  })
-
-  it('.dblclick() - double click on a DOM element', () => {
-    // https://on.cypress.io/dblclick
-
-    // Our app has a listener on 'dblclick' event in our 'scripts.js'
-    // that hides the div and shows an input on double click
-    cy.get('.action-div').dblclick()
-    cy.get('.action-div').should('not.be.visible')
-    cy.get('.action-input-hidden').should('be.visible')
-  })
-
-  it('.rightclick() - right click on a DOM element', () => {
-    // https://on.cypress.io/rightclick
-
-    // Our app has a listener on 'contextmenu' event in our 'scripts.js'
-    // that hides the div and shows an input on right click
-    cy.get('.rightclick-action-div').rightclick()
-    cy.get('.rightclick-action-div').should('not.be.visible')
-    cy.get('.rightclick-action-input-hidden').should('be.visible')
-  })
-
-  it('.check() - check a checkbox or radio element', () => {
-    // https://on.cypress.io/check
-
-    // By default, .check() will check all
-    // matching checkbox or radio elements in succession, one after another
-    cy.get('.action-checkboxes [type="checkbox"]').not('[disabled]').check()
-    cy.get('.action-checkboxes [type="checkbox"]').not('[disabled]').should('be.checked')
-
-    cy.get('.action-radios [type="radio"]').not('[disabled]').check()
-    cy.get('.action-radios [type="radio"]').not('[disabled]').should('be.checked')
-
-    // .check() accepts a value argument
-    cy.get('.action-radios [type="radio"]').check('radio1')
-    cy.get('.action-radios [type="radio"]').should('be.checked')
-
-    // .check() accepts an array of values
-    cy.get('.action-multiple-checkboxes [type="checkbox"]').check(['checkbox1', 'checkbox2'])
-    cy.get('.action-multiple-checkboxes [type="checkbox"]').should('be.checked')
-
-    // Ignore error checking prior to checking
-    cy.get('.action-checkboxes [disabled]').check({ force: true })
-    cy.get('.action-checkboxes [disabled]').should('be.checked')
-
-    cy.get('.action-radios [type="radio"]').check('radio3', { force: true })
-    cy.get('.action-radios [type="radio"]').should('be.checked')
-  })
-
-  it('.uncheck() - uncheck a checkbox element', () => {
-    // https://on.cypress.io/uncheck
-
-    // By default, .uncheck() will uncheck all matching
-    // checkbox elements in succession, one after another
-    cy.get('.action-check [type="checkbox"]')
-      .not('[disabled]')
-      .uncheck()
-    cy.get('.action-check [type="checkbox"]')
-      .not('[disabled]')
-      .should('not.be.checked')
-
-    // .uncheck() accepts a value argument
-    cy.get('.action-check [type="checkbox"]')
-      .check('checkbox1')
-    cy.get('.action-check [type="checkbox"]')
-      .uncheck('checkbox1')
-    cy.get('.action-check [type="checkbox"][value="checkbox1"]')
-      .should('not.be.checked')
-
-    // .uncheck() accepts an array of values
-    cy.get('.action-check [type="checkbox"]')
-      .check(['checkbox1', 'checkbox3'])
-    cy.get('.action-check [type="checkbox"]')
-      .uncheck(['checkbox1', 'checkbox3'])
-    cy.get('.action-check [type="checkbox"][value="checkbox1"]')
-      .should('not.be.checked')
-    cy.get('.action-check [type="checkbox"][value="checkbox3"]')
-      .should('not.be.checked')
-
-    // Ignore error checking prior to unchecking
-    cy.get('.action-check [disabled]').uncheck({ force: true })
-    cy.get('.action-check [disabled]').should('not.be.checked')
-  })
-
-  it('.select() - select an option in a <select> element', () => {
-    // https://on.cypress.io/select
-
-    // at first, no option should be selected
-    cy.get('.action-select')
-      .should('have.value', '--Select a fruit--')
-
-    // Select option(s) with matching text content
-    cy.get('.action-select').select('apples')
-    // confirm the apples were selected
-    // note that each value starts with "fr-" in our HTML
-    cy.get('.action-select').should('have.value', 'fr-apples')
-
-    cy.get('.action-select-multiple')
-      .select(['apples', 'oranges', 'bananas'])
-    cy.get('.action-select-multiple')
-      // when getting multiple values, invoke "val" method first
-      .invoke('val')
-      .should('deep.equal', ['fr-apples', 'fr-oranges', 'fr-bananas'])
-
-    // Select option(s) with matching value
-    cy.get('.action-select').select('fr-bananas')
-    cy.get('.action-select')
-      // can attach an assertion right away to the element
-      .should('have.value', 'fr-bananas')
-
-    cy.get('.action-select-multiple')
-      .select(['fr-apples', 'fr-oranges', 'fr-bananas'])
-    cy.get('.action-select-multiple')
-      .invoke('val')
-      .should('deep.equal', ['fr-apples', 'fr-oranges', 'fr-bananas'])
-
-    // assert the selected values include oranges
-    cy.get('.action-select-multiple')
-      .invoke('val').should('include', 'fr-oranges')
-  })
-
-  it('.scrollIntoView() - scroll an element into view', () => {
-    // https://on.cypress.io/scrollintoview
-
-    // normally all of these buttons are hidden,
-    // because they're not within
-    // the viewable area of their parent
-    // (we need to scroll to see them)
-    cy.get('#scroll-horizontal button')
-      .should('not.be.visible')
-
-    // scroll the button into view, as if the user had scrolled
-    cy.get('#scroll-horizontal button').scrollIntoView()
-    cy.get('#scroll-horizontal button')
-      .should('be.visible')
-
-    cy.get('#scroll-vertical button')
-      .should('not.be.visible')
-
-    // Cypress handles the scroll direction needed
-    cy.get('#scroll-vertical button').scrollIntoView()
-    cy.get('#scroll-vertical button')
-      .should('be.visible')
-
-    cy.get('#scroll-both button')
-      .should('not.be.visible')
-
-    // Cypress knows to scroll to the right and down
-    cy.get('#scroll-both button').scrollIntoView()
-    cy.get('#scroll-both button')
-      .should('be.visible')
-  })
-
-  it('.trigger() - trigger an event on a DOM element', () => {
-    // https://on.cypress.io/trigger
-
-    // To interact with a range input (slider)
-    // we need to set its value & trigger the
-    // event to signal it changed
-
-    // Here, we invoke jQuery's val() method to set
-    // the value and trigger the 'change' event
-    cy.get('.trigger-input-range')
-      .invoke('val', 25)
-    cy.get('.trigger-input-range')
-      .trigger('change')
-    cy.get('.trigger-input-range')
-      .get('input[type=range]').siblings('p')
-      .should('have.text', '25')
-  })
-
-  it('cy.scrollTo() - scroll the window or element to a position', () => {
-    // https://on.cypress.io/scrollto
-
-    // You can scroll to 9 specific positions of an element:
-    //  -----------------------------------
-    // | topLeft        top       topRight |
-    // |                                   |
-    // |                                   |
-    // |                                   |
-    // | left          center        right |
-    // |                                   |
-    // |                                   |
-    // |                                   |
-    // | bottomLeft   bottom   bottomRight |
-    //  -----------------------------------
-
-    // if you chain .scrollTo() off of cy, we will
-    // scroll the entire window
-    cy.scrollTo('bottom')
-
-    cy.get('#scrollable-horizontal').scrollTo('right')
-
-    // or you can scroll to a specific coordinate:
-    // (x axis, y axis) in pixels
-    cy.get('#scrollable-vertical').scrollTo(250, 250)
-
-    // or you can scroll to a specific percentage
-    // of the (width, height) of the element
-    cy.get('#scrollable-both').scrollTo('75%', '25%')
-
-    // control the easing of the scroll (default is 'swing')
-    cy.get('#scrollable-vertical').scrollTo('center', { easing: 'linear' })
-
-    // control the duration of the scroll (in ms)
-    cy.get('#scrollable-both').scrollTo('center', { duration: 2000 })
-  })
-})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/aliasing.cy.js b/packages/example/cypress/e2e/2-advanced-examples/aliasing.cy.js
deleted file mode 100644
index a02fb2bb93d7..000000000000
--- a/packages/example/cypress/e2e/2-advanced-examples/aliasing.cy.js
+++ /dev/null
@@ -1,39 +0,0 @@
-/// <reference types="cypress" />
-
-context('Aliasing', () => {
-  beforeEach(() => {
-    cy.visit('https://example.cypress.io/commands/aliasing')
-  })
-
-  it('.as() - alias a DOM element for later use', () => {
-    // https://on.cypress.io/as
-
-    // Alias a DOM element for use later
-    // We don't have to traverse to the element
-    // later in our code, we reference it with @
-
-    cy.get('.as-table').find('tbody>tr')
-      .first().find('td').first()
-      .find('button').as('firstBtn')
-
-    // when we reference the alias, we place an
-    // @ in front of its name
-    cy.get('@firstBtn').click()
-
-    cy.get('@firstBtn')
-      .should('have.class', 'btn-success')
-      .and('contain', 'Changed')
-  })
-
-  it('.as() - alias a route for later use', () => {
-    // Alias the route to wait for its response
-    cy.intercept('GET', '**/comments/*').as('getComment')
-
-    // we have code that gets a comment when
-    // the button is clicked in scripts.js
-    cy.get('.network-btn').click()
-
-    // https://on.cypress.io/wait
-    cy.wait('@getComment').its('response.statusCode').should('eq', 200)
-  })
-})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/assertions.cy.js b/packages/example/cypress/e2e/2-advanced-examples/assertions.cy.js
deleted file mode 100644
index 79e3d0e9148f..000000000000
--- a/packages/example/cypress/e2e/2-advanced-examples/assertions.cy.js
+++ /dev/null
@@ -1,176 +0,0 @@
-/// <reference types="cypress" />
-
-context('Assertions', () => {
-  beforeEach(() => {
-    cy.visit('https://example.cypress.io/commands/assertions')
-  })
-
-  describe('Implicit Assertions', () => {
-    it('.should() - make an assertion about the current subject', () => {
-      // https://on.cypress.io/should
-      cy.get('.assertion-table')
-        .find('tbody tr:last')
-        .should('have.class', 'success')
-        .find('td')
-        .first()
-        // checking the text of the <td> element in various ways
-        .should('have.text', 'Column content')
-        .should('contain', 'Column content')
-        .should('have.html', 'Column content')
-        // chai-jquery uses "is()" to check if element matches selector
-        .should('match', 'td')
-        // to match text content against a regular expression
-        // first need to invoke jQuery method text()
-        // and then match using regular expression
-        .invoke('text')
-        .should('match', /column content/i)
-
-      // a better way to check element's text content against a regular expression
-      // is to use "cy.contains"
-      // https://on.cypress.io/contains
-      cy.get('.assertion-table')
-        .find('tbody tr:last')
-        // finds first <td> element with text content matching regular expression
-        .contains('td', /column content/i)
-        .should('be.visible')
-
-      // for more information about asserting element's text
-      // see https://on.cypress.io/using-cypress-faq#How-do-I-get-an-element’s-text-contents
-    })
-
-    it('.and() - chain multiple assertions together', () => {
-      // https://on.cypress.io/and
-      cy.get('.assertions-link')
-        .should('have.class', 'active')
-        .and('have.attr', 'href')
-        .and('include', 'cypress.io')
-    })
-  })
-
-  describe('Explicit Assertions', () => {
-    // https://on.cypress.io/assertions
-    it('expect - make an assertion about a specified subject', () => {
-      // We can use Chai's BDD style assertions
-      expect(true).to.be.true
-      const o = { foo: 'bar' }
-
-      expect(o).to.equal(o)
-      expect(o).to.deep.equal({ foo: 'bar' })
-      // matching text using regular expression
-      expect('FooBar').to.match(/bar$/i)
-    })
-
-    it('pass your own callback function to should()', () => {
-      // Pass a function to should that can have any number
-      // of explicit assertions within it.
-      // The ".should(cb)" function will be retried
-      // automatically until it passes all your explicit assertions or times out.
-      cy.get('.assertions-p')
-        .find('p')
-        .should(($p) => {
-          // https://on.cypress.io/$
-          // return an array of texts from all of the p's
-          const texts = $p.map((i, el) => Cypress.$(el).text())
-
-          // jquery map returns jquery object
-          // and .get() convert this to simple array
-          const paragraphs = texts.get()
-
-          // array should have length of 3
-          expect(paragraphs, 'has 3 paragraphs').to.have.length(3)
-
-          // use second argument to expect(...) to provide clear
-          // message with each assertion
-          expect(paragraphs, 'has expected text in each paragraph').to.deep.eq([
-            'Some text from first p',
-            'More text from second p',
-            'And even more text from third p',
-          ])
-        })
-    })
-
-    it('finds element by class name regex', () => {
-      cy.get('.docs-header')
-        .find('div')
-        // .should(cb) callback function will be retried
-        .should(($div) => {
-          expect($div).to.have.length(1)
-
-          const className = $div[0].className
-
-          expect(className).to.match(/heading-/)
-        })
-        // .then(cb) callback is not retried,
-        // it either passes or fails
-        .then(($div) => {
-          expect($div, 'text content').to.have.text('Introduction')
-        })
-    })
-
-    it('can throw any error', () => {
-      cy.get('.docs-header')
-        .find('div')
-        .should(($div) => {
-          if ($div.length !== 1) {
-            // you can throw your own errors
-            throw new Error('Did not find 1 element')
-          }
-
-          const className = $div[0].className
-
-          if (!className.match(/heading-/)) {
-            throw new Error(`Could not find class "heading-" in ${className}`)
-          }
-        })
-    })
-
-    it('matches unknown text between two elements', () => {
-      /**
-       * Text from the first element.
-       * @type {string}
-      */
-      let text
-
-      /**
-       * Normalizes passed text,
-       * useful before comparing text with spaces and different capitalization.
-       * @param {string} s Text to normalize
-      */
-      const normalizeText = (s) => s.replace(/\s/g, '').toLowerCase()
-
-      cy.get('.two-elements')
-        .find('.first')
-        .then(($first) => {
-          // save text from the first element
-          text = normalizeText($first.text())
-        })
-
-      cy.get('.two-elements')
-        .find('.second')
-        .should(($div) => {
-          // we can massage text before comparing
-          const secondText = normalizeText($div.text())
-
-          expect(secondText, 'second text').to.equal(text)
-        })
-    })
-
-    it('assert - assert shape of an object', () => {
-      const person = {
-        name: 'Joe',
-        age: 20,
-      }
-
-      assert.isObject(person, 'value is object')
-    })
-
-    it('retries the should callback until assertions pass', () => {
-      cy.get('#random-number')
-        .should(($div) => {
-          const n = parseFloat($div.text())
-
-          expect(n).to.be.gte(1).and.be.lte(10)
-        })
-    })
-  })
-})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/connectors.cy.js b/packages/example/cypress/e2e/2-advanced-examples/connectors.cy.js
deleted file mode 100644
index f24cf526ed7c..000000000000
--- a/packages/example/cypress/e2e/2-advanced-examples/connectors.cy.js
+++ /dev/null
@@ -1,98 +0,0 @@
-/// <reference types="cypress" />
-
-context('Connectors', () => {
-  beforeEach(() => {
-    cy.visit('https://example.cypress.io/commands/connectors')
-  })
-
-  it('.each() - iterate over an array of elements', () => {
-    // https://on.cypress.io/each
-    cy.get('.connectors-each-ul>li')
-      .each(($el, index, $list) => {
-        console.log($el, index, $list)
-      })
-  })
-
-  it('.its() - get properties on the current subject', () => {
-    // https://on.cypress.io/its
-    cy.get('.connectors-its-ul>li')
-      // calls the 'length' property yielding that value
-      .its('length')
-      .should('be.gt', 2)
-  })
-
-  it('.invoke() - invoke a function on the current subject', () => {
-    // our div is hidden in our script.js
-    // $('.connectors-div').hide()
-    cy.get('.connectors-div').should('be.hidden')
-
-    // https://on.cypress.io/invoke
-    // call the jquery method 'show' on the 'div.container'
-    cy.get('.connectors-div').invoke('show')
-
-    cy.get('.connectors-div').should('be.visible')
-  })
-
-  it('.spread() - spread an array as individual args to callback function', () => {
-    // https://on.cypress.io/spread
-    const arr = ['foo', 'bar', 'baz']
-
-    cy.wrap(arr).spread((foo, bar, baz) => {
-      expect(foo).to.eq('foo')
-      expect(bar).to.eq('bar')
-      expect(baz).to.eq('baz')
-    })
-  })
-
-  describe('.then()', () => {
-    it('invokes a callback function with the current subject', () => {
-      // https://on.cypress.io/then
-      cy.get('.connectors-list > li')
-        .then(($lis) => {
-          expect($lis, '3 items').to.have.length(3)
-          expect($lis.eq(0), 'first item').to.contain('Walk the dog')
-          expect($lis.eq(1), 'second item').to.contain('Feed the cat')
-          expect($lis.eq(2), 'third item').to.contain('Write JavaScript')
-        })
-    })
-
-    it('yields the returned value to the next command', () => {
-      cy.wrap(1)
-        .then((num) => {
-          expect(num).to.equal(1)
-
-          return 2
-        })
-        .then((num) => {
-          expect(num).to.equal(2)
-        })
-    })
-
-    it('yields the original subject without return', () => {
-      cy.wrap(1)
-        .then((num) => {
-          expect(num).to.equal(1)
-          // note that nothing is returned from this callback
-        })
-        .then((num) => {
-          // this callback receives the original unchanged value 1
-          expect(num).to.equal(1)
-        })
-    })
-
-    it('yields the value yielded by the last Cypress command inside', () => {
-      cy.wrap(1)
-        .then((num) => {
-          expect(num).to.equal(1)
-          // note how we run a Cypress command
-          // the result yielded by this Cypress command
-          // will be passed to the second ".then"
-          cy.wrap(2)
-        })
-        .then((num) => {
-          // this callback receives the value yielded by "cy.wrap(2)"
-          expect(num).to.equal(2)
-        })
-    })
-  })
-})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/cookies.cy.js b/packages/example/cypress/e2e/2-advanced-examples/cookies.cy.js
deleted file mode 100644
index 3ad6657e5b81..000000000000
--- a/packages/example/cypress/e2e/2-advanced-examples/cookies.cy.js
+++ /dev/null
@@ -1,118 +0,0 @@
-/// <reference types="cypress" />
-
-context('Cookies', () => {
-  beforeEach(() => {
-    Cypress.Cookies.debug(true)
-
-    cy.visit('https://example.cypress.io/commands/cookies')
-
-    // clear cookies again after visiting to remove
-    // any 3rd party cookies picked up such as cloudflare
-    cy.clearCookies()
-  })
-
-  it('cy.getCookie() - get a browser cookie', () => {
-    // https://on.cypress.io/getcookie
-    cy.get('#getCookie .set-a-cookie').click()
-
-    // cy.getCookie() yields a cookie object
-    cy.getCookie('token').should('have.property', 'value', '123ABC')
-  })
-
-  it('cy.getCookies() - get browser cookies for the current domain', () => {
-    // https://on.cypress.io/getcookies
-    cy.getCookies().should('be.empty')
-
-    cy.get('#getCookies .set-a-cookie').click()
-
-    // cy.getCookies() yields an array of cookies
-    cy.getCookies().should('have.length', 1).should((cookies) => {
-      // each cookie has these properties
-      expect(cookies[0]).to.have.property('name', 'token')
-      expect(cookies[0]).to.have.property('value', '123ABC')
-      expect(cookies[0]).to.have.property('httpOnly', false)
-      expect(cookies[0]).to.have.property('secure', false)
-      expect(cookies[0]).to.have.property('domain')
-      expect(cookies[0]).to.have.property('path')
-    })
-  })
-
-  it('cy.getAllCookies() - get all browser cookies', () => {
-    // https://on.cypress.io/getallcookies
-    cy.getAllCookies().should('be.empty')
-
-    cy.setCookie('key', 'value')
-    cy.setCookie('key', 'value', { domain: '.example.com' })
-
-    // cy.getAllCookies() yields an array of cookies
-    cy.getAllCookies().should('have.length', 2).should((cookies) => {
-      // each cookie has these properties
-      expect(cookies[0]).to.have.property('name', 'key')
-      expect(cookies[0]).to.have.property('value', 'value')
-      expect(cookies[0]).to.have.property('httpOnly', false)
-      expect(cookies[0]).to.have.property('secure', false)
-      expect(cookies[0]).to.have.property('domain')
-      expect(cookies[0]).to.have.property('path')
-
-      expect(cookies[1]).to.have.property('name', 'key')
-      expect(cookies[1]).to.have.property('value', 'value')
-      expect(cookies[1]).to.have.property('httpOnly', false)
-      expect(cookies[1]).to.have.property('secure', false)
-      expect(cookies[1]).to.have.property('domain', '.example.com')
-      expect(cookies[1]).to.have.property('path')
-    })
-  })
-
-  it('cy.setCookie() - set a browser cookie', () => {
-    // https://on.cypress.io/setcookie
-    cy.getCookies().should('be.empty')
-
-    cy.setCookie('foo', 'bar')
-
-    // cy.getCookie() yields a cookie object
-    cy.getCookie('foo').should('have.property', 'value', 'bar')
-  })
-
-  it('cy.clearCookie() - clear a browser cookie', () => {
-    // https://on.cypress.io/clearcookie
-    cy.getCookie('token').should('be.null')
-
-    cy.get('#clearCookie .set-a-cookie').click()
-
-    cy.getCookie('token').should('have.property', 'value', '123ABC')
-
-    // cy.clearCookies() yields null
-    cy.clearCookie('token')
-
-    cy.getCookie('token').should('be.null')
-  })
-
-  it('cy.clearCookies() - clear browser cookies for the current domain', () => {
-    // https://on.cypress.io/clearcookies
-    cy.getCookies().should('be.empty')
-
-    cy.get('#clearCookies .set-a-cookie').click()
-
-    cy.getCookies().should('have.length', 1)
-
-    // cy.clearCookies() yields null
-    cy.clearCookies()
-
-    cy.getCookies().should('be.empty')
-  })
-
-  it('cy.clearAllCookies() - clear all browser cookies', () => {
-    // https://on.cypress.io/clearallcookies
-    cy.getAllCookies().should('be.empty')
-
-    cy.setCookie('key', 'value')
-    cy.setCookie('key', 'value', { domain: '.example.com' })
-
-    cy.getAllCookies().should('have.length', 2)
-
-    // cy.clearAllCookies() yields null
-    cy.clearAllCookies()
-
-    cy.getAllCookies().should('be.empty')
-  })
-})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/cypress_api.cy.js b/packages/example/cypress/e2e/2-advanced-examples/cypress_api.cy.js
deleted file mode 100644
index 556f2b8ac5fc..000000000000
--- a/packages/example/cypress/e2e/2-advanced-examples/cypress_api.cy.js
+++ /dev/null
@@ -1,185 +0,0 @@
-/// <reference types="cypress" />
-
-context('Cypress APIs', () => {
-
-  context('Cypress.Commands', () => {
-    beforeEach(() => {
-      cy.visit('https://example.cypress.io/cypress-api')
-    })
-
-    // https://on.cypress.io/custom-commands
-
-    it('.add() - create a custom command', () => {
-      Cypress.Commands.add('console', {
-        prevSubject: true,
-      }, (subject, method) => {
-      // the previous subject is automatically received
-      // and the commands arguments are shifted
-
-        // allow us to change the console method used
-        method = method || 'log'
-
-        // log the subject to the console
-        console[method]('The subject is', subject)
-
-        // whatever we return becomes the new subject
-        // we don't want to change the subject so
-        // we return whatever was passed in
-        return subject
-      })
-
-      cy.get('button').console('info').then(($button) => {
-      // subject is still $button
-      })
-    })
-  })
-
-  context('Cypress.Cookies', () => {
-    beforeEach(() => {
-      cy.visit('https://example.cypress.io/cypress-api')
-    })
-
-    // https://on.cypress.io/cookies
-    it('.debug() - enable or disable debugging', () => {
-      Cypress.Cookies.debug(true)
-
-      // Cypress will now log in the console when
-      // cookies are set or cleared
-      cy.setCookie('fakeCookie', '123ABC')
-      cy.clearCookie('fakeCookie')
-      cy.setCookie('fakeCookie', '123ABC')
-      cy.clearCookie('fakeCookie')
-      cy.setCookie('fakeCookie', '123ABC')
-    })
-  })
-
-  context('Cypress.arch', () => {
-    beforeEach(() => {
-      cy.visit('https://example.cypress.io/cypress-api')
-    })
-
-    it('Get CPU architecture name of underlying OS', () => {
-    // https://on.cypress.io/arch
-      expect(Cypress.arch).to.exist
-    })
-  })
-
-  context('Cypress.config()', () => {
-    beforeEach(() => {
-      cy.visit('https://example.cypress.io/cypress-api')
-    })
-
-    it('Get and set configuration options', () => {
-    // https://on.cypress.io/config
-      let myConfig = Cypress.config()
-
-      expect(myConfig).to.have.property('animationDistanceThreshold', 5)
-      expect(myConfig).to.have.property('baseUrl', null)
-      expect(myConfig).to.have.property('defaultCommandTimeout', 4000)
-      expect(myConfig).to.have.property('requestTimeout', 5000)
-      expect(myConfig).to.have.property('responseTimeout', 30000)
-      expect(myConfig).to.have.property('viewportHeight', 660)
-      expect(myConfig).to.have.property('viewportWidth', 1000)
-      expect(myConfig).to.have.property('pageLoadTimeout', 60000)
-      expect(myConfig).to.have.property('waitForAnimations', true)
-
-      expect(Cypress.config('pageLoadTimeout')).to.eq(60000)
-
-      // this will change the config for the rest of your tests!
-      Cypress.config('pageLoadTimeout', 20000)
-
-      expect(Cypress.config('pageLoadTimeout')).to.eq(20000)
-
-      Cypress.config('pageLoadTimeout', 60000)
-    })
-  })
-
-  context('Cypress.dom', () => {
-    beforeEach(() => {
-      cy.visit('https://example.cypress.io/cypress-api')
-    })
-
-    // https://on.cypress.io/dom
-    it('.isHidden() - determine if a DOM element is hidden', () => {
-      let hiddenP = Cypress.$('.dom-p p.hidden').get(0)
-      let visibleP = Cypress.$('.dom-p p.visible').get(0)
-
-      // our first paragraph has css class 'hidden'
-      expect(Cypress.dom.isHidden(hiddenP)).to.be.true
-      expect(Cypress.dom.isHidden(visibleP)).to.be.false
-    })
-  })
-
-  context('Cypress.env()', () => {
-    beforeEach(() => {
-      cy.visit('https://example.cypress.io/cypress-api')
-    })
-
-    // We can set environment variables for highly dynamic values
-
-    // https://on.cypress.io/environment-variables
-    it('Get environment variables', () => {
-    // https://on.cypress.io/env
-    // set multiple environment variables
-      Cypress.env({
-        host: 'veronica.dev.local',
-        api_server: 'http://localhost:8888/v1/',
-      })
-
-      // get environment variable
-      expect(Cypress.env('host')).to.eq('veronica.dev.local')
-
-      // set environment variable
-      Cypress.env('api_server', 'http://localhost:8888/v2/')
-      expect(Cypress.env('api_server')).to.eq('http://localhost:8888/v2/')
-
-      // get all environment variable
-      expect(Cypress.env()).to.have.property('host', 'veronica.dev.local')
-      expect(Cypress.env()).to.have.property('api_server', 'http://localhost:8888/v2/')
-    })
-  })
-
-  context('Cypress.log', () => {
-    beforeEach(() => {
-      cy.visit('https://example.cypress.io/cypress-api')
-    })
-
-    it('Control what is printed to the Command Log', () => {
-    // https://on.cypress.io/cypress-log
-    })
-  })
-
-  context('Cypress.platform', () => {
-    beforeEach(() => {
-      cy.visit('https://example.cypress.io/cypress-api')
-    })
-
-    it('Get underlying OS name', () => {
-    // https://on.cypress.io/platform
-      expect(Cypress.platform).to.be.exist
-    })
-  })
-
-  context('Cypress.version', () => {
-    beforeEach(() => {
-      cy.visit('https://example.cypress.io/cypress-api')
-    })
-
-    it('Get current version of Cypress being run', () => {
-    // https://on.cypress.io/version
-      expect(Cypress.version).to.be.exist
-    })
-  })
-
-  context('Cypress.spec', () => {
-    beforeEach(() => {
-      cy.visit('https://example.cypress.io/cypress-api')
-    })
-
-    it('Get current spec information', () => {
-    // https://on.cypress.io/spec
-    // wrap the object so we can inspect it easily by clicking in the command log
-      cy.wrap(Cypress.spec).should('include.keys', ['name', 'relative', 'absolute'])
-    })
-  })
-})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/files.cy.js b/packages/example/cypress/e2e/2-advanced-examples/files.cy.js
deleted file mode 100644
index 1be9d44b7df7..000000000000
--- a/packages/example/cypress/e2e/2-advanced-examples/files.cy.js
+++ /dev/null
@@ -1,85 +0,0 @@
-/// <reference types="cypress" />
-
-/// JSON fixture file can be loaded directly using
-// the built-in JavaScript bundler
-const requiredExample = require('../../fixtures/example')
-
-context('Files', () => {
-  beforeEach(() => {
-    cy.visit('https://example.cypress.io/commands/files')
-
-    // load example.json fixture file and store
-    // in the test context object
-    cy.fixture('example.json').as('example')
-  })
-
-  it('cy.fixture() - load a fixture', () => {
-    // https://on.cypress.io/fixture
-
-    // Instead of writing a response inline you can
-    // use a fixture file's content.
-
-    // when application makes an Ajax request matching "GET **/comments/*"
-    // Cypress will intercept it and reply with the object in `example.json` fixture
-    cy.intercept('GET', '**/comments/*', { fixture: 'example.json' }).as('getComment')
-
-    // we have code that gets a comment when
-    // the button is clicked in scripts.js
-    cy.get('.fixture-btn').click()
-
-    cy.wait('@getComment').its('response.body')
-      .should('have.property', 'name')
-      .and('include', 'Using fixtures to represent data')
-  })
-
-  it('cy.fixture() or require - load a fixture', function () {
-    // we are inside the "function () { ... }"
-    // callback and can use test context object "this"
-    // "this.example" was loaded in "beforeEach" function callback
-    expect(this.example, 'fixture in the test context')
-      .to.deep.equal(requiredExample)
-
-    // or use "cy.wrap" and "should('deep.equal', ...)" assertion
-    cy.wrap(this.example)
-      .should('deep.equal', requiredExample)
-  })
-
-  it('cy.readFile() - read file contents', () => {
-    // https://on.cypress.io/readfile
-
-    // You can read a file and yield its contents
-    // The filePath is relative to your project's root.
-    cy.readFile(Cypress.config('configFile')).then((config) => {
-      expect(config).to.be.an('string')
-    })
-  })
-
-  it('cy.writeFile() - write to a file', () => {
-    // https://on.cypress.io/writefile
-
-    // You can write to a file
-
-    // Use a response from a request to automatically
-    // generate a fixture file for use later
-    cy.request('https://jsonplaceholder.cypress.io/users')
-      .then((response) => {
-        cy.writeFile('cypress/fixtures/users.json', response.body)
-      })
-
-    cy.fixture('users').should((users) => {
-      expect(users[0].name).to.exist
-    })
-
-    // JavaScript arrays and objects are stringified
-    // and formatted into text.
-    cy.writeFile('cypress/fixtures/profile.json', {
-      id: 8739,
-      name: 'Jane',
-      email: 'jane@example.com',
-    })
-
-    cy.fixture('profile').should((profile) => {
-      expect(profile.name).to.eq('Jane')
-    })
-  })
-})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/location.cy.js b/packages/example/cypress/e2e/2-advanced-examples/location.cy.js
deleted file mode 100644
index 299867da07ef..000000000000
--- a/packages/example/cypress/e2e/2-advanced-examples/location.cy.js
+++ /dev/null
@@ -1,32 +0,0 @@
-/// <reference types="cypress" />
-
-context('Location', () => {
-  beforeEach(() => {
-    cy.visit('https://example.cypress.io/commands/location')
-  })
-
-  it('cy.hash() - get the current URL hash', () => {
-    // https://on.cypress.io/hash
-    cy.hash().should('be.empty')
-  })
-
-  it('cy.location() - get window.location', () => {
-    // https://on.cypress.io/location
-    cy.location().should((location) => {
-      expect(location.hash).to.be.empty
-      expect(location.href).to.eq('https://example.cypress.io/commands/location')
-      expect(location.host).to.eq('example.cypress.io')
-      expect(location.hostname).to.eq('example.cypress.io')
-      expect(location.origin).to.eq('https://example.cypress.io')
-      expect(location.pathname).to.eq('/commands/location')
-      expect(location.port).to.eq('')
-      expect(location.protocol).to.eq('https:')
-      expect(location.search).to.be.empty
-    })
-  })
-
-  it('cy.url() - get the current URL', () => {
-    // https://on.cypress.io/url
-    cy.url().should('eq', 'https://example.cypress.io/commands/location')
-  })
-})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/misc.cy.js b/packages/example/cypress/e2e/2-advanced-examples/misc.cy.js
deleted file mode 100644
index 52b947454a14..000000000000
--- a/packages/example/cypress/e2e/2-advanced-examples/misc.cy.js
+++ /dev/null
@@ -1,90 +0,0 @@
-/// <reference types="cypress" />
-
-context('Misc', () => {
-  beforeEach(() => {
-    cy.visit('https://example.cypress.io/commands/misc')
-  })
-
-  it('cy.exec() - execute a system command', () => {
-    // execute a system command.
-    // so you can take actions necessary for
-    // your test outside the scope of Cypress.
-    // https://on.cypress.io/exec
-
-    // we can use Cypress.platform string to
-    // select appropriate command
-    // https://on.cypress/io/platform
-    cy.log(`Platform ${Cypress.platform} architecture ${Cypress.arch}`)
-
-    // on CircleCI Windows build machines we have a failure to run bash shell
-    // https://github.com/cypress-io/cypress/issues/5169
-    // so skip some of the tests by passing flag "--env circle=true"
-    const isCircleOnWindows = Cypress.platform === 'win32' && Cypress.env('circle')
-
-    if (isCircleOnWindows) {
-      cy.log('Skipping test on CircleCI')
-
-      return
-    }
-
-    // cy.exec problem on Shippable CI
-    // https://github.com/cypress-io/cypress/issues/6718
-    const isShippable = Cypress.platform === 'linux' && Cypress.env('shippable')
-
-    if (isShippable) {
-      cy.log('Skipping test on ShippableCI')
-
-      return
-    }
-
-    cy.exec('echo Jane Lane')
-      .its('stdout').should('contain', 'Jane Lane')
-
-    if (Cypress.platform === 'win32') {
-      cy.exec(`print ${Cypress.config('configFile')}`)
-        .its('stderr').should('be.empty')
-    } else {
-      cy.exec(`cat ${Cypress.config('configFile')}`)
-        .its('stderr').should('be.empty')
-
-      cy.exec('pwd')
-        .its('code').should('eq', 0)
-    }
-  })
-
-  it('cy.focused() - get the DOM element that has focus', () => {
-    // https://on.cypress.io/focused
-    cy.get('.misc-form').find('#name').click()
-    cy.focused().should('have.id', 'name')
-
-    cy.get('.misc-form').find('#description').click()
-    cy.focused().should('have.id', 'description')
-  })
-
-  context('Cypress.Screenshot', function () {
-    it('cy.screenshot() - take a screenshot', () => {
-      // https://on.cypress.io/screenshot
-      cy.screenshot('my-image')
-    })
-
-    it('Cypress.Screenshot.defaults() - change default config of screenshots', function () {
-      Cypress.Screenshot.defaults({
-        blackout: ['.foo'],
-        capture: 'viewport',
-        clip: { x: 0, y: 0, width: 200, height: 200 },
-        scale: false,
-        disableTimersAndAnimations: true,
-        screenshotOnRunFailure: true,
-        onBeforeScreenshot () { },
-        onAfterScreenshot () { },
-      })
-    })
-  })
-
-  it('cy.wrap() - wrap an object', () => {
-    // https://on.cypress.io/wrap
-    cy.wrap({ foo: 'bar' })
-      .should('have.property', 'foo')
-      .and('include', 'bar')
-  })
-})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/navigation.cy.js b/packages/example/cypress/e2e/2-advanced-examples/navigation.cy.js
deleted file mode 100644
index d9c9d7d81e07..000000000000
--- a/packages/example/cypress/e2e/2-advanced-examples/navigation.cy.js
+++ /dev/null
@@ -1,55 +0,0 @@
-/// <reference types="cypress" />
-
-context('Navigation', () => {
-  beforeEach(() => {
-    cy.visit('https://example.cypress.io')
-    cy.get('.navbar-nav').contains('Commands').click()
-    cy.get('.dropdown-menu').contains('Navigation').click()
-  })
-
-  it('cy.go() - go back or forward in the browser\'s history', () => {
-    // https://on.cypress.io/go
-
-    cy.location('pathname').should('include', 'navigation')
-
-    cy.go('back')
-    cy.location('pathname').should('not.include', 'navigation')
-
-    cy.go('forward')
-    cy.location('pathname').should('include', 'navigation')
-
-    // clicking back
-    cy.go(-1)
-    cy.location('pathname').should('not.include', 'navigation')
-
-    // clicking forward
-    cy.go(1)
-    cy.location('pathname').should('include', 'navigation')
-  })
-
-  it('cy.reload() - reload the page', () => {
-    // https://on.cypress.io/reload
-    cy.reload()
-
-    // reload the page without using the cache
-    cy.reload(true)
-  })
-
-  it('cy.visit() - visit a remote url', () => {
-    // https://on.cypress.io/visit
-
-    // Visit any sub-domain of your current domain
-    // Pass options to the visit
-    cy.visit('https://example.cypress.io/commands/navigation', {
-      timeout: 50000, // increase total time for the visit to resolve
-      onBeforeLoad (contentWindow) {
-        // contentWindow is the remote page's window object
-        expect(typeof contentWindow === 'object').to.be.true
-      },
-      onLoad (contentWindow) {
-        // contentWindow is the remote page's window object
-        expect(typeof contentWindow === 'object').to.be.true
-      },
-    })
-  })
-})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/network_requests.cy.js b/packages/example/cypress/e2e/2-advanced-examples/network_requests.cy.js
deleted file mode 100644
index 11213a0e852a..000000000000
--- a/packages/example/cypress/e2e/2-advanced-examples/network_requests.cy.js
+++ /dev/null
@@ -1,163 +0,0 @@
-/// <reference types="cypress" />
-
-context('Network Requests', () => {
-  beforeEach(() => {
-    cy.visit('https://example.cypress.io/commands/network-requests')
-  })
-
-  // Manage HTTP requests in your app
-
-  it('cy.request() - make an XHR request', () => {
-    // https://on.cypress.io/request
-    cy.request('https://jsonplaceholder.cypress.io/comments')
-      .should((response) => {
-        expect(response.status).to.eq(200)
-        // the server sometimes gets an extra comment posted from another machine
-        // which gets returned as 1 extra object
-        expect(response.body).to.have.property('length').and.be.oneOf([500, 501])
-        expect(response).to.have.property('headers')
-        expect(response).to.have.property('duration')
-      })
-  })
-
-  it('cy.request() - verify response using BDD syntax', () => {
-    cy.request('https://jsonplaceholder.cypress.io/comments')
-    .then((response) => {
-      // https://on.cypress.io/assertions
-      expect(response).property('status').to.equal(200)
-      expect(response).property('body').to.have.property('length').and.be.oneOf([500, 501])
-      expect(response).to.include.keys('headers', 'duration')
-    })
-  })
-
-  it('cy.request() with query parameters', () => {
-    // will execute request
-    // https://jsonplaceholder.cypress.io/comments?postId=1&id=3
-    cy.request({
-      url: 'https://jsonplaceholder.cypress.io/comments',
-      qs: {
-        postId: 1,
-        id: 3,
-      },
-    })
-    .its('body')
-    .should('be.an', 'array')
-    .and('have.length', 1)
-    .its('0') // yields first element of the array
-    .should('contain', {
-      postId: 1,
-      id: 3,
-    })
-  })
-
-  it('cy.request() - pass result to the second request', () => {
-    // first, let's find out the userId of the first user we have
-    cy.request('https://jsonplaceholder.cypress.io/users?_limit=1')
-      .its('body') // yields the response object
-      .its('0') // yields the first element of the returned list
-      // the above two commands its('body').its('0')
-      // can be written as its('body.0')
-      // if you do not care about TypeScript checks
-      .then((user) => {
-        expect(user).property('id').to.be.a('number')
-        // make a new post on behalf of the user
-        cy.request('POST', 'https://jsonplaceholder.cypress.io/posts', {
-          userId: user.id,
-          title: 'Cypress Test Runner',
-          body: 'Fast, easy and reliable testing for anything that runs in a browser.',
-        })
-      })
-      // note that the value here is the returned value of the 2nd request
-      // which is the new post object
-      .then((response) => {
-        expect(response).property('status').to.equal(201) // new entity created
-        expect(response).property('body').to.contain({
-          title: 'Cypress Test Runner',
-        })
-
-        // we don't know the exact post id - only that it will be > 100
-        // since JSONPlaceholder has built-in 100 posts
-        expect(response.body).property('id').to.be.a('number')
-          .and.to.be.gt(100)
-
-        // we don't know the user id here - since it was in above closure
-        // so in this test just confirm that the property is there
-        expect(response.body).property('userId').to.be.a('number')
-      })
-  })
-
-  it('cy.request() - save response in the shared test context', () => {
-    // https://on.cypress.io/variables-and-aliases
-    cy.request('https://jsonplaceholder.cypress.io/users?_limit=1')
-      .its('body').its('0') // yields the first element of the returned list
-      .as('user') // saves the object in the test context
-      .then(function () {
-        // NOTE 👀
-        //  By the time this callback runs the "as('user')" command
-        //  has saved the user object in the test context.
-        //  To access the test context we need to use
-        //  the "function () { ... }" callback form,
-        //  otherwise "this" points at a wrong or undefined object!
-        cy.request('POST', 'https://jsonplaceholder.cypress.io/posts', {
-          userId: this.user.id,
-          title: 'Cypress Test Runner',
-          body: 'Fast, easy and reliable testing for anything that runs in a browser.',
-        })
-        .its('body').as('post') // save the new post from the response
-      })
-      .then(function () {
-        // When this callback runs, both "cy.request" API commands have finished
-        // and the test context has "user" and "post" objects set.
-        // Let's verify them.
-        expect(this.post, 'post has the right user id').property('userId').to.equal(this.user.id)
-      })
-  })
-
-  it('cy.intercept() - route responses to matching requests', () => {
-    // https://on.cypress.io/intercept
-
-    let message = 'whoa, this comment does not exist'
-
-    // Listen to GET to comments/1
-    cy.intercept('GET', '**/comments/*').as('getComment')
-
-    // we have code that gets a comment when
-    // the button is clicked in scripts.js
-    cy.get('.network-btn').click()
-
-    // https://on.cypress.io/wait
-    cy.wait('@getComment').its('response.statusCode').should('be.oneOf', [200, 304])
-
-    // Listen to POST to comments
-    cy.intercept('POST', '**/comments').as('postComment')
-
-    // we have code that posts a comment when
-    // the button is clicked in scripts.js
-    cy.get('.network-post').click()
-    cy.wait('@postComment').should(({ request, response }) => {
-      expect(request.body).to.include('email')
-      expect(request.headers).to.have.property('content-type')
-      expect(response && response.body).to.have.property('name', 'Using POST in cy.intercept()')
-    })
-
-    // Stub a response to PUT comments/ ****
-    cy.intercept({
-      method: 'PUT',
-      url: '**/comments/*',
-    }, {
-      statusCode: 404,
-      body: { error: message },
-      headers: { 'access-control-allow-origin': '*' },
-      delayMs: 500,
-    }).as('putComment')
-
-    // we have code that puts a comment when
-    // the button is clicked in scripts.js
-    cy.get('.network-put').click()
-
-    cy.wait('@putComment')
-
-    // our 404 statusCode logic in scripts.js executed
-    cy.get('.network-put-comment').should('contain', message)
-  })
-})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/querying.cy.js b/packages/example/cypress/e2e/2-advanced-examples/querying.cy.js
deleted file mode 100644
index 00970480f6c8..000000000000
--- a/packages/example/cypress/e2e/2-advanced-examples/querying.cy.js
+++ /dev/null
@@ -1,114 +0,0 @@
-/// <reference types="cypress" />
-
-context('Querying', () => {
-  beforeEach(() => {
-    cy.visit('https://example.cypress.io/commands/querying')
-  })
-
-  // The most commonly used query is 'cy.get()', you can
-  // think of this like the '$' in jQuery
-
-  it('cy.get() - query DOM elements', () => {
-    // https://on.cypress.io/get
-
-    cy.get('#query-btn').should('contain', 'Button')
-
-    cy.get('.query-btn').should('contain', 'Button')
-
-    cy.get('#querying .well>button:first').should('contain', 'Button')
-    //              ↲
-    // Use CSS selectors just like jQuery
-
-    cy.get('[data-test-id="test-example"]').should('have.class', 'example')
-
-    // 'cy.get()' yields jQuery object, you can get its attribute
-    // by invoking `.attr()` method
-    cy.get('[data-test-id="test-example"]')
-      .invoke('attr', 'data-test-id')
-      .should('equal', 'test-example')
-
-    // or you can get element's CSS property
-    cy.get('[data-test-id="test-example"]')
-      .invoke('css', 'position')
-      .should('equal', 'static')
-
-    // or use assertions directly during 'cy.get()'
-    // https://on.cypress.io/assertions
-    cy.get('[data-test-id="test-example"]')
-      .should('have.attr', 'data-test-id', 'test-example')
-      .and('have.css', 'position', 'static')
-  })
-
-  it('cy.contains() - query DOM elements with matching content', () => {
-    // https://on.cypress.io/contains
-    cy.get('.query-list')
-      .contains('bananas')
-      .should('have.class', 'third')
-
-    // we can pass a regexp to `.contains()`
-    cy.get('.query-list')
-      .contains(/^b\w+/)
-      .should('have.class', 'third')
-
-    cy.get('.query-list')
-      .contains('apples')
-      .should('have.class', 'first')
-
-    // passing a selector to contains will
-    // yield the selector containing the text
-    cy.get('#querying')
-      .contains('ul', 'oranges')
-      .should('have.class', 'query-list')
-
-    cy.get('.query-button')
-      .contains('Save Form')
-      .should('have.class', 'btn')
-  })
-
-  it('.within() - query DOM elements within a specific element', () => {
-    // https://on.cypress.io/within
-    cy.get('.query-form').within(() => {
-      cy.get('input:first').should('have.attr', 'placeholder', 'Email')
-      cy.get('input:last').should('have.attr', 'placeholder', 'Password')
-    })
-  })
-
-  it('cy.root() - query the root DOM element', () => {
-    // https://on.cypress.io/root
-
-    // By default, root is the document
-    cy.root().should('match', 'html')
-
-    cy.get('.query-ul').within(() => {
-      // In this within, the root is now the ul DOM element
-      cy.root().should('have.class', 'query-ul')
-    })
-  })
-
-  it('best practices - selecting elements', () => {
-    // https://on.cypress.io/best-practices#Selecting-Elements
-    cy.get('[data-cy=best-practices-selecting-elements]').within(() => {
-      // Worst - too generic, no context
-      cy.get('button').click()
-
-      // Bad. Coupled to styling. Highly subject to change.
-      cy.get('.btn.btn-large').click()
-
-      // Average. Coupled to the `name` attribute which has HTML semantics.
-      cy.get('[name=submission]').click()
-
-      // Better. But still coupled to styling or JS event listeners.
-      cy.get('#main').click()
-
-      // Slightly better. Uses an ID but also ensures the element
-      // has an ARIA role attribute
-      cy.get('#main[role=button]').click()
-
-      // Much better. But still coupled to text content that may change.
-      cy.contains('Submit').click()
-
-      // Best. Insulated from all changes.
-      cy.get('[data-cy=submit]').click()
-    })
-  })
-})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/spies_stubs_clocks.cy.js b/packages/example/cypress/e2e/2-advanced-examples/spies_stubs_clocks.cy.js
deleted file mode 100644
index 6186f3a50959..000000000000
--- a/packages/example/cypress/e2e/2-advanced-examples/spies_stubs_clocks.cy.js
+++ /dev/null
@@ -1,204 +0,0 @@
-/// <reference types="cypress" />
-
-context('Spies, Stubs, and Clock', () => {
-  it('cy.spy() - wrap a method in a spy', () => {
-    // https://on.cypress.io/spy
-    cy.visit('https://example.cypress.io/commands/spies-stubs-clocks')
-
-    const obj = {
-      foo () {},
-    }
-
-    const spy = cy.spy(obj, 'foo').as('anyArgs')
-
-    obj.foo()
-
-    expect(spy).to.be.called
-  })
-
-  it('cy.spy() retries until assertions pass', () => {
-    cy.visit('https://example.cypress.io/commands/spies-stubs-clocks')
-
-    const obj = {
-      /**
-       * Prints the argument passed
-       * @param x {any}
-      */
-      foo (x) {
-        console.log('obj.foo called with', x)
-      },
-    }
-
-    cy.spy(obj, 'foo').as('foo')
-
-    setTimeout(() => {
-      obj.foo('first')
-    }, 500)
-
-    setTimeout(() => {
-      obj.foo('second')
-    }, 2500)
-
-    cy.get('@foo').should('have.been.calledTwice')
-  })
-
-  it('cy.stub() - create a stub and/or replace a function with stub', () => {
-    // https://on.cypress.io/stub
-    cy.visit('https://example.cypress.io/commands/spies-stubs-clocks')
-
-    const obj = {
-      /**
-       * prints both arguments to the console
-       * @param a {string}
-       * @param b {string}
-      */
-      foo (a, b) {
-        console.log('a', a, 'b', b)
-      },
-    }
-
-    const stub = cy.stub(obj, 'foo').as('foo')
-
-    obj.foo('foo', 'bar')
-
-    expect(stub).to.be.called
-  })
-
-  it('cy.clock() - control time in the browser', () => {
-    // https://on.cypress.io/clock
-
-    // create the date in UTC so it's always the same
-    // no matter what local timezone the browser is running in
-    const now = new Date(Date.UTC(2017, 2, 14)).getTime()
-
-    cy.clock(now)
-    cy.visit('https://example.cypress.io/commands/spies-stubs-clocks')
-    cy.get('#clock-div').click()
-    cy.get('#clock-div')
-      .should('have.text', '1489449600')
-  })
-
-  it('cy.tick() - move time in the browser', () => {
-    // https://on.cypress.io/tick
-
-    // create the date in UTC so it's always the same
-    // no matter what local timezone the browser is running in
-    const now = new Date(Date.UTC(2017, 2, 14)).getTime()
-
-    cy.clock(now)
-    cy.visit('https://example.cypress.io/commands/spies-stubs-clocks')
-    cy.get('#tick-div').click()
-    cy.get('#tick-div')
-      .should('have.text', '1489449600')
-
-    cy.tick(10000) // 10 seconds passed
-    cy.get('#tick-div').click()
-    cy.get('#tick-div')
-      .should('have.text', '1489449610')
-  })
-
-  it('cy.stub() matches depending on arguments', () => {
-    // see all possible matchers at
-    // https://sinonjs.org/releases/latest/matchers/
-    const greeter = {
-      /**
-       * Greets a person
-       * @param {string} name
-      */
-      greet (name) {
-        return `Hello, ${name}!`
-      },
-    }
-
-    cy.stub(greeter, 'greet')
-      .callThrough() // if you want non-matched calls to call the real method
-      .withArgs(Cypress.sinon.match.string).returns('Hi')
-      .withArgs(Cypress.sinon.match.number).throws(new Error('Invalid name'))
-
-    expect(greeter.greet('World')).to.equal('Hi')
-    expect(() => greeter.greet(42)).to.throw('Invalid name')
-    expect(greeter.greet).to.have.been.calledTwice
-
-    // non-matched calls goes the actual method
-    expect(greeter.greet()).to.equal('Hello, undefined!')
-  })
-
-  it('matches call arguments using Sinon matchers', () => {
-    // see all possible matchers at
-    // https://sinonjs.org/releases/latest/matchers/
-    const calculator = {
-      /**
-       * returns the sum of two arguments
-       * @param a {number}
-       * @param b {number}
-      */
-      add (a, b) {
-        return a + b
-      },
-    }
-
-    const spy = cy.spy(calculator, 'add').as('add')
-
-    expect(calculator.add(2, 3)).to.equal(5)
-
-    // if we want to assert the exact values used during the call
-    expect(spy).to.be.calledWith(2, 3)
-
-    // let's confirm "add" method was called with two numbers
-    expect(spy).to.be.calledWith(Cypress.sinon.match.number, Cypress.sinon.match.number)
-
-    // alternatively, provide the value to match
-    expect(spy).to.be.calledWith(Cypress.sinon.match(2), Cypress.sinon.match(3))
-
-    // match any value
-    expect(spy).to.be.calledWith(Cypress.sinon.match.any, 3)
-
-    // match any value from a list
-    expect(spy).to.be.calledWith(Cypress.sinon.match.in([1, 2, 3]), 3)
-
-    /**
-     * Returns true if the given number is even
-     * @param {number} x
-     */
-    const isEven = (x) => x % 2 === 0
-
-    // expect the value to pass a custom predicate function
-    // the second argument to "sinon.match(predicate, message)" is
-    // shown if the predicate does not pass and assertion fails
-    expect(spy).to.be.calledWith(Cypress.sinon.match(isEven, 'isEven'), 3)
-
-    /**
-     * Returns a function that checks if a given number is larger than the limit
-     * @param {number} limit
-     * @returns {(x: number) => boolean}
-     */
-    const isGreaterThan = (limit) => (x) => x > limit
-
-    /**
-     * Returns a function that checks if a given number is less than the limit
-     * @param {number} limit
-     * @returns {(x: number) => boolean}
-     */
-    const isLessThan = (limit) => (x) => x < limit
-
-    // you can combine several matchers using "and", "or"
-    expect(spy).to.be.calledWith(
-      Cypress.sinon.match.number,
-      Cypress.sinon.match(isGreaterThan(2), '> 2').and(Cypress.sinon.match(isLessThan(4), '< 4')),
-    )
-
-    expect(spy).to.be.calledWith(
-      Cypress.sinon.match.number,
-      Cypress.sinon.match(isGreaterThan(200), '> 200').or(Cypress.sinon.match(3)),
-    )
-
-    // matchers can be used from BDD assertions
-    cy.get('@add').should('have.been.calledWith',
-      Cypress.sinon.match.number, Cypress.sinon.match(3))
-
-    // you can alias matchers for shorter test code
-    const { match: M } = Cypress.sinon
-
-    cy.get('@add').should('have.been.calledWith', M.number, M(3))
-  })
-})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/storage.cy.js b/packages/example/cypress/e2e/2-advanced-examples/storage.cy.js
deleted file mode 100644
index 0101a63e4ede..000000000000
--- a/packages/example/cypress/e2e/2-advanced-examples/storage.cy.js
+++ /dev/null
@@ -1,117 +0,0 @@
-/// <reference types="cypress" />
-
-context('Local Storage / Session Storage', () => {
-  beforeEach(() => {
-    cy.visit('https://example.cypress.io/commands/storage')
-  })
-  // Although localStorage is automatically cleared
-  // in between tests to maintain a clean state
-  // sometimes we need to clear localStorage manually
-
-  it('cy.clearLocalStorage() - clear all data in localStorage for the current origin', () => {
-    // https://on.cypress.io/clearlocalstorage
-    cy.get('.ls-btn').click()
-    cy.get('.ls-btn').should(() => {
-      expect(localStorage.getItem('prop1')).to.eq('red')
-      expect(localStorage.getItem('prop2')).to.eq('blue')
-      expect(localStorage.getItem('prop3')).to.eq('magenta')
-    })
-
-    cy.clearLocalStorage()
-    cy.getAllLocalStorage().should(() => {
-      expect(localStorage.getItem('prop1')).to.be.null
-      expect(localStorage.getItem('prop2')).to.be.null
-      expect(localStorage.getItem('prop3')).to.be.null
-    })
-
-    cy.get('.ls-btn').click()
-    cy.get('.ls-btn').should(() => {
-      expect(localStorage.getItem('prop1')).to.eq('red')
-      expect(localStorage.getItem('prop2')).to.eq('blue')
-      expect(localStorage.getItem('prop3')).to.eq('magenta')
-    })
-
-    // Clear key matching string in localStorage
-    cy.clearLocalStorage('prop1')
-    cy.getAllLocalStorage().should(() => {
-      expect(localStorage.getItem('prop1')).to.be.null
-      expect(localStorage.getItem('prop2')).to.eq('blue')
-      expect(localStorage.getItem('prop3')).to.eq('magenta')
-    })
-
-    cy.get('.ls-btn').click()
-    cy.get('.ls-btn').should(() => {
-      expect(localStorage.getItem('prop1')).to.eq('red')
-      expect(localStorage.getItem('prop2')).to.eq('blue')
-      expect(localStorage.getItem('prop3')).to.eq('magenta')
-    })
-
-    // Clear keys matching regex in localStorage
-    cy.clearLocalStorage(/prop1|2/)
-    cy.getAllLocalStorage().should(() => {
-      expect(localStorage.getItem('prop1')).to.be.null
-      expect(localStorage.getItem('prop2')).to.be.null
-      expect(localStorage.getItem('prop3')).to.eq('magenta')
-    })
-  })
-
-  it('cy.getAllLocalStorage() - get all data in localStorage for all origins', () => {
-    // https://on.cypress.io/getalllocalstorage
-    cy.get('.ls-btn').click()
-
-    // getAllLocalStorage() yields a map of origins to localStorage values
-    cy.getAllLocalStorage().should((storageMap) => {
-      expect(storageMap).to.deep.equal({
-        // other origins will also be present if localStorage is set on them
-        'https://example.cypress.io': {
-          'prop1': 'red',
-          'prop2': 'blue',
-          'prop3': 'magenta',
-        },
-      })
-    })
-  })
-
-  it('cy.clearAllLocalStorage() - clear all data in localStorage for all origins', () => {
-    // https://on.cypress.io/clearalllocalstorage
-    cy.get('.ls-btn').click()
-
-    // clearAllLocalStorage() yields null
-    cy.clearAllLocalStorage()
-    cy.getAllLocalStorage().should(() => {
-      expect(localStorage.getItem('prop1')).to.be.null
-      expect(localStorage.getItem('prop2')).to.be.null
-      expect(localStorage.getItem('prop3')).to.be.null
-    })
-  })
-
-  it('cy.getAllSessionStorage() - get all data in sessionStorage for all origins', () => {
-    // https://on.cypress.io/getallsessionstorage
-    cy.get('.ls-btn').click()
-
-    // getAllSessionStorage() yields a map of origins to sessionStorage values
-    cy.getAllSessionStorage().should((storageMap) => {
-      expect(storageMap).to.deep.equal({
-        // other origins will also be present if sessionStorage is set on them
-        'https://example.cypress.io': {
-          'prop4': 'cyan',
-          'prop5': 'yellow',
-          'prop6': 'black',
-        },
-      })
-    })
-  })
-
-  it('cy.clearAllSessionStorage() - clear all data in sessionStorage for all origins', () => {
-    // https://on.cypress.io/clearallsessionstorage
-    cy.get('.ls-btn').click()
-
-    // clearAllSessionStorage() yields null
-    cy.clearAllSessionStorage()
-    cy.getAllSessionStorage().should(() => {
-      expect(sessionStorage.getItem('prop4')).to.be.null
-      expect(sessionStorage.getItem('prop5')).to.be.null
-      expect(sessionStorage.getItem('prop6')).to.be.null
-    })
-  })
-})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/traversal.cy.js b/packages/example/cypress/e2e/2-advanced-examples/traversal.cy.js
deleted file mode 100644
index 0a3b9d33062d..000000000000
--- a/packages/example/cypress/e2e/2-advanced-examples/traversal.cy.js
+++ /dev/null
@@ -1,121 +0,0 @@
-/// <reference types="cypress" />
-
-context('Traversal', () => {
-  beforeEach(() => {
-    cy.visit('https://example.cypress.io/commands/traversal')
-  })
-
-  it('.children() - get child DOM elements', () => {
-    // https://on.cypress.io/children
-    cy.get('.traversal-breadcrumb')
-      .children('.active')
-      .should('contain', 'Data')
-  })
-
-  it('.closest() - get closest ancestor DOM element', () => {
-    // https://on.cypress.io/closest
-    cy.get('.traversal-badge')
-      .closest('ul')
-      .should('have.class', 'list-group')
-  })
-
-  it('.eq() - get a DOM element at a specific index', () => {
-    // https://on.cypress.io/eq
-    cy.get('.traversal-list>li')
-      .eq(1).should('contain', 'siamese')
-  })
-
-  it('.filter() - get DOM elements that match the selector', () => {
-    // https://on.cypress.io/filter
-    cy.get('.traversal-nav>li')
-      .filter('.active').should('contain', 'About')
-  })
-
-  it('.find() - get descendant DOM elements of the selector', () => {
-    // https://on.cypress.io/find
-    cy.get('.traversal-pagination')
-      .find('li').find('a')
-      .should('have.length', 7)
-  })
-
-  it('.first() - get first DOM element', () => {
-    // https://on.cypress.io/first
-    cy.get('.traversal-table td')
-      .first().should('contain', '1')
-  })
-
-  it('.last() - get last DOM element', () => {
-    // https://on.cypress.io/last
-    cy.get('.traversal-buttons .btn')
-      .last().should('contain', 'Submit')
-  })
-
-  it('.next() - get next sibling DOM element', () => {
-    // https://on.cypress.io/next
-    cy.get('.traversal-ul')
-      .contains('apples').next().should('contain', 'oranges')
-  })
-
-  it('.nextAll() - get all next sibling DOM elements', () => {
-    // https://on.cypress.io/nextall
-    cy.get('.traversal-next-all')
-      .contains('oranges')
-      .nextAll().should('have.length', 3)
-  })
-
-  it('.nextUntil() - get next sibling DOM elements until next el', () => {
-    // https://on.cypress.io/nextuntil
-    cy.get('#veggies')
-      .nextUntil('#nuts').should('have.length', 3)
-  })
-
-  it('.not() - remove DOM elements from set of DOM elements', () => {
-    // https://on.cypress.io/not
-    cy.get('.traversal-disabled .btn')
-      .not('[disabled]').should('not.contain', 'Disabled')
-  })
-
-  it('.parent() - get parent DOM element from DOM elements', () => {
-    // https://on.cypress.io/parent
-    cy.get('.traversal-mark')
-      .parent().should('contain', 'Morbi leo risus')
-  })
-
-  it('.parents() - get parent DOM elements from DOM elements', () => {
-    // https://on.cypress.io/parents
-    cy.get('.traversal-cite')
-      .parents().should('match', 'blockquote')
-  })
-
-  it('.parentsUntil() - get parent DOM elements from DOM elements until el', () => {
-    // https://on.cypress.io/parentsuntil
-    cy.get('.clothes-nav')
-      .find('.active')
-      .parentsUntil('.clothes-nav')
-      .should('have.length', 2)
-  })
-
-  it('.prev() - get previous sibling DOM element', () => {
-    // https://on.cypress.io/prev
-    cy.get('.birds').find('.active')
-      .prev().should('contain', 'Lorikeets')
-  })
-
-  it('.prevAll() - get all previous sibling DOM elements', () => {
-    // https://on.cypress.io/prevall
-    cy.get('.fruits-list').find('.third')
-      .prevAll().should('have.length', 2)
-  })
-
-  it('.prevUntil() - get all previous sibling DOM elements until el', () => {
-    // https://on.cypress.io/prevuntil
-    cy.get('.foods-list').find('#nuts')
-      .prevUntil('#veggies').should('have.length', 3)
-  })
-
-  it('.siblings() - get all sibling DOM elements', () => {
-    // https://on.cypress.io/siblings
-    cy.get('.traversal-pills .active')
-      .siblings().should('have.length', 2)
-  })
-})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/utilities.cy.js b/packages/example/cypress/e2e/2-advanced-examples/utilities.cy.js
deleted file mode 100644
index 50b224f7c3d8..000000000000
--- a/packages/example/cypress/e2e/2-advanced-examples/utilities.cy.js
+++ /dev/null
@@ -1,107 +0,0 @@
-/// <reference types="cypress" />
-
-context('Utilities', () => {
-  beforeEach(() => {
-    cy.visit('https://example.cypress.io/utilities')
-  })
-
-  it('Cypress._ - call a lodash method', () => {
-    // https://on.cypress.io/_
-    cy.request('https://jsonplaceholder.cypress.io/users')
-      .then((response) => {
-        let ids = Cypress._.chain(response.body).map('id').take(3).value()
-
-        expect(ids).to.deep.eq([1, 2, 3])
-      })
-  })
-
-  it('Cypress.$ - call a jQuery method', () => {
-    // https://on.cypress.io/$
-    let $li = Cypress.$('.utility-jquery li:first')
-
-    cy.wrap($li).should('not.have.class', 'active')
-    cy.wrap($li).click()
-    cy.wrap($li).should('have.class', 'active')
-  })
-
-  it('Cypress.Blob - blob utilities and base64 string conversion', () => {
-    // https://on.cypress.io/blob
-    cy.get('.utility-blob').then(($div) => {
-      // https://github.com/nolanlawson/blob-util#imgSrcToDataURL
-      // get the dataUrl string for the javascript-logo
-      return Cypress.Blob.imgSrcToDataURL('https://example.cypress.io/assets/img/javascript-logo.png', undefined, 'anonymous')
-      .then((dataUrl) => {
-        // create an <img> element and set its src to the dataUrl
-        let img = Cypress.$('<img />', { src: dataUrl })
-
-        // need to explicitly return cy here since we are initially returning
-        // the Cypress.Blob.imgSrcToDataURL promise to our test
-        // append the image
-        $div.append(img)
-
-        cy.get('.utility-blob img').click()
-        cy.get('.utility-blob img').should('have.attr', 'src', dataUrl)
-      })
-    })
-  })
-
-  it('Cypress.minimatch - test out glob patterns against strings', () => {
-    // https://on.cypress.io/minimatch
-    let matching = Cypress.minimatch('/users/1/comments', '/users/*/comments', {
-      matchBase: true,
-    })
-
-    expect(matching, 'matching wildcard').to.be.true
-
-    matching = Cypress.minimatch('/users/1/comments/2', '/users/*/comments', {
-      matchBase: true,
-    })
-
-    expect(matching, 'comments').to.be.false
-
-    // ** matches against all downstream path segments
-    matching = Cypress.minimatch('/foo/bar/baz/123/quux?a=b&c=2', '/foo/**', {
-      matchBase: true,
-    })
-
-    expect(matching, 'comments').to.be.true
-
-    // whereas * matches only the next path segment
-
-    matching = Cypress.minimatch('/foo/bar/baz/123/quux?a=b&c=2', '/foo/*', {
-      matchBase: false,
-    })
-
-    expect(matching, 'comments').to.be.false
-  })
-
-  it('Cypress.Promise - instantiate a bluebird promise', () => {
-    // https://on.cypress.io/promise
-    let waited = false
-
-    /**
-     * @return Bluebird<string>
-     */
-    function waitOneSecond () {
-      // return a promise that resolves after 1 second
-      return new Cypress.Promise((resolve, reject) => {
-        setTimeout(() => {
-          // set waited to true
-          waited = true
-
-          // resolve with 'foo' string
-          resolve('foo')
-        }, 1000)
-      })
-    }
-
-    cy.then(() => {
-      // return a promise to cy.then() that
-      // is awaited until it resolves
-      return waitOneSecond().then((str) => {
-        expect(str).to.eq('foo')
-        expect(waited).to.be.true
-      })
-    })
-  })
-})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/viewport.cy.js b/packages/example/cypress/e2e/2-advanced-examples/viewport.cy.js
deleted file mode 100644
index a06ae206a21a..000000000000
--- a/packages/example/cypress/e2e/2-advanced-examples/viewport.cy.js
+++ /dev/null
@@ -1,58 +0,0 @@
-/// <reference types="cypress" />
-context('Viewport', () => {
-  beforeEach(() => {
-    cy.visit('https://example.cypress.io/commands/viewport')
-  })
-
-  it('cy.viewport() - set the viewport size and dimension', () => {
-    // https://on.cypress.io/viewport
-
-    cy.get('#navbar').should('be.visible')
-    cy.viewport(320, 480)
-
-    // the navbar should have collapse since our screen is smaller
-    cy.get('#navbar').should('not.be.visible')
-    cy.get('.navbar-toggle').should('be.visible').click()
-    cy.get('.nav').find('a').should('be.visible')
-
-    // lets see what our app looks like on a super large screen
-    cy.viewport(2999, 2999)
-
-    // cy.viewport() accepts a set of preset sizes
-    // to easily set the screen to a device's width and height
-
-    // We added a cy.wait() between each viewport change so you can see
-    // the change otherwise it is a little too fast to see :)
-
-    cy.viewport('macbook-15')
-    cy.wait(200)
-    cy.viewport('macbook-13')
-    cy.wait(200)
-    cy.viewport('macbook-11')
-    cy.wait(200)
-    cy.viewport('ipad-2')
-    cy.wait(200)
-    cy.viewport('ipad-mini')
-    cy.wait(200)
-    cy.viewport('iphone-6+')
-    cy.wait(200)
-    cy.viewport('iphone-6')
-    cy.wait(200)
-    cy.viewport('iphone-5')
-    cy.wait(200)
-    cy.viewport('iphone-4')
-    cy.wait(200)
-    cy.viewport('iphone-3')
-    cy.wait(200)
-
-    // cy.viewport() accepts an orientation for all presets
-    // the default orientation is 'portrait'
-    cy.viewport('ipad-2', 'portrait')
-    cy.wait(200)
-    cy.viewport('iphone-4', 'landscape')
-    cy.wait(200)
-
-    // The viewport will be reset back to the default dimensions
-    // in between tests (the  default can be set in cypress.config.{js|ts})
-  })
-})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/waiting.cy.js b/packages/example/cypress/e2e/2-advanced-examples/waiting.cy.js
deleted file mode 100644
index 21998f9fb666..000000000000
--- a/packages/example/cypress/e2e/2-advanced-examples/waiting.cy.js
+++ /dev/null
@@ -1,30 +0,0 @@
-/// <reference types="cypress" />
-context('Waiting', () => {
-  beforeEach(() => {
-    cy.visit('https://example.cypress.io/commands/waiting')
-  })
-  // BE CAREFUL of adding unnecessary wait times.
-  // https://on.cypress.io/best-practices#Unnecessary-Waiting
-
-  // https://on.cypress.io/wait
-  it('cy.wait() - wait for a specific amount of time', () => {
-    cy.get('.wait-input1').type('Wait 1000ms after typing')
-    cy.wait(1000)
-    cy.get('.wait-input2').type('Wait 1000ms after typing')
-    cy.wait(1000)
-    cy.get('.wait-input3').type('Wait 1000ms after typing')
-    cy.wait(1000)
-  })
-
-  it('cy.wait() - wait for a specific route', () => {
-    // Listen to GET to comments/1
-    cy.intercept('GET', '**/comments/*').as('getComment')
-
-    // we have code that gets a comment when
-    // the button is clicked in scripts.js
-    cy.get('.network-btn').click()
-
-    // wait for GET comments/1
-    cy.wait('@getComment').its('response.statusCode').should('be.oneOf', [200, 304])
-  })
-})
diff --git a/packages/example/cypress/e2e/2-advanced-examples/window.cy.js b/packages/example/cypress/e2e/2-advanced-examples/window.cy.js
deleted file mode 100644
index f94b64971db1..000000000000
--- a/packages/example/cypress/e2e/2-advanced-examples/window.cy.js
+++ /dev/null
@@ -1,22 +0,0 @@
-/// <reference types="cypress" />
-
-context('Window', () => {
-  beforeEach(() => {
-    cy.visit('https://example.cypress.io/commands/window')
-  })
-
-  it('cy.window() - get the global window object', () => {
-    // https://on.cypress.io/window
-    cy.window().should('have.property', 'top')
-  })
-
-  it('cy.document() - get the document object', () => {
-    // https://on.cypress.io/document
-    cy.document().should('have.property', 'charset').and('eq', 'UTF-8')
-  })
-
-  it('cy.title() - get the title', () => {
-    // https://on.cypress.io/title
-    cy.title().should('include', 'Kitchen Sink')
-  })
-})
diff --git a/packages/example/cypress/fixtures/example.json b/packages/example/cypress/fixtures/example.json
deleted file mode 100644
index 02e4254378e9..000000000000
--- a/packages/example/cypress/fixtures/example.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  "name": "Using fixtures to represent data",
-  "email": "hello@cypress.io",
-  "body": "Fixtures are a great way to mock data for responses to routes"
-}
diff --git a/packages/example/cypress/support/commands.js b/packages/example/cypress/support/commands.js
deleted file mode 100644
index 119ab03f7cda..000000000000
--- a/packages/example/cypress/support/commands.js
+++ /dev/null
@@ -1,25 +0,0 @@
-// ***********************************************
-// This example commands.js shows you how to
-// create various custom commands and overwrite
-// existing commands.
-//
-// For more comprehensive examples of custom
-// commands please read more here:
-// https://on.cypress.io/custom-commands
-// ***********************************************
-//
-//
-// -- This is a parent command --
-// Cypress.Commands.add('login', (email, password) => { ... })
-//
-//
-// -- This is a child command --
-// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... })
-//
-//
-// -- This is a dual command --
-// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... })
-//
-//
-// -- This will overwrite an existing command --
-// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
diff --git a/packages/example/cypress/support/component.js b/packages/example/cypress/support/component.js
deleted file mode 100644
index 5e450a7b1a4a..000000000000
--- a/packages/example/cypress/support/component.js
+++ /dev/null
@@ -1,20 +0,0 @@
-// ***********************************************************
-// This example support/component.js is processed and
-// loaded automatically before your test files.
-//
-// This is a great place to put global configuration and
-// behavior that modifies Cypress.
-//
-// You can change the location of this file or turn off
-// automatically serving support files with the
-// 'supportFile' configuration option.
-//
-// You can read more here:
-// https://on.cypress.io/configuration
-// ***********************************************************
-
-// Import commands.js using ES2015 syntax:
-import './commands'
-
-// Alternatively you can use CommonJS syntax:
-// require('./commands')
diff --git a/packages/example/cypress/support/e2e.js b/packages/example/cypress/support/e2e.js
deleted file mode 100644
index d1dd1353e812..000000000000
--- a/packages/example/cypress/support/e2e.js
+++ /dev/null
@@ -1,20 +0,0 @@
-// ***********************************************************
-// This example support/e2e.js is processed and
-// loaded automatically before your test files.
-//
-// This is a great place to put global configuration and
-// behavior that modifies Cypress.
-//
-// You can change the location of this file or turn off
-// automatically serving support files with the
-// 'supportFile' configuration option.
-//
-// You can read more here:
-// https://on.cypress.io/configuration
-// ***********************************************************
-
-// Import commands.js using ES2015 syntax:
-import './commands'
-
-// Alternatively you can use CommonJS syntax:
-// require('./commands')

From 93fb014a2b2d2b39e55471df91cad61999c437ef Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 10:24:48 -0500
Subject: [PATCH 047/127] packages/extension

---
 packages/extension/.eslintignore              |  6 -----
 packages/extension/app/v3/content.js          |  2 +-
 packages/extension/eslint.config.ts           | 16 ++++++++++++
 packages/extension/eslint.tsconfig.json       |  7 +++++
 packages/extension/index.d.ts                 |  2 +-
 packages/extension/package.json               |  2 +-
 packages/extension/test/.eslintrc.json        |  8 ------
 packages/extension/test/helpers/background.js | 26 ++++++++++---------
 packages/extension/tsconfig.json              |  4 +--
 9 files changed, 42 insertions(+), 31 deletions(-)
 delete mode 100644 packages/extension/.eslintignore
 create mode 100644 packages/extension/eslint.config.ts
 create mode 100644 packages/extension/eslint.tsconfig.json
 delete mode 100644 packages/extension/test/.eslintrc.json

diff --git a/packages/extension/.eslintignore b/packages/extension/.eslintignore
deleted file mode 100644
index 3405de2acf70..000000000000
--- a/packages/extension/.eslintignore
+++ /dev/null
@@ -1,6 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
-/test/helpers/background.js
\ No newline at end of file
diff --git a/packages/extension/app/v3/content.js b/packages/extension/app/v3/content.js
index 8c34f18b27d3..940edd70d4e2 100644
--- a/packages/extension/app/v3/content.js
+++ b/packages/extension/app/v3/content.js
@@ -1,4 +1,4 @@
-/* global chrome, window */
+/* global chrome */
 
 // this content script has access to the DOM, but is otherwise isolated from
 // the page running Cypress, so we have to use postMessage to communicate. it
diff --git a/packages/extension/eslint.config.ts b/packages/extension/eslint.config.ts
new file mode 100644
index 000000000000..2a4c6c0e3f8f
--- /dev/null
+++ b/packages/extension/eslint.config.ts
@@ -0,0 +1,16 @@
+import { baseConfig } from '../../eslint.config'
+
+export default [
+  ...baseConfig,
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: false,
+        project: './eslint.tsconfig.json',
+      },
+      globals: {
+        sinon: 'readonly',
+      },
+    },
+  },
+]
diff --git a/packages/extension/eslint.tsconfig.json b/packages/extension/eslint.tsconfig.json
new file mode 100644
index 000000000000..5c815b9f0993
--- /dev/null
+++ b/packages/extension/eslint.tsconfig.json
@@ -0,0 +1,7 @@
+{
+  "extends": "./tsconfig.json",
+  "compilerOptions": {
+    "allowJs" : true,
+    "outDir": "./dist"
+  }
+}
\ No newline at end of file
diff --git a/packages/extension/index.d.ts b/packages/extension/index.d.ts
index 902c9e199556..13c625030aa2 100644
--- a/packages/extension/index.d.ts
+++ b/packages/extension/index.d.ts
@@ -2,4 +2,4 @@
 
 declare const lib: typeof import('./lib/extension')
 
-export default lib 
\ No newline at end of file
+export default lib
diff --git a/packages/extension/package.json b/packages/extension/package.json
index ba078faa6b93..3cb58b5f1418 100644
--- a/packages/extension/package.json
+++ b/packages/extension/package.json
@@ -8,7 +8,7 @@
     "clean": "gulp clean",
     "clean-deps": "rimraf node_modules",
     "postinstall": "echo '@packages/extension needs: yarn build'",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "test": "yarn test-unit",
     "test-debug": "yarn test-unit --inspect-brk=5566",
     "test-unit": "cross-env NODE_ENV=test mocha -r @packages/ts/register --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
diff --git a/packages/extension/test/.eslintrc.json b/packages/extension/test/.eslintrc.json
deleted file mode 100644
index 7e8e439b6d39..000000000000
--- a/packages/extension/test/.eslintrc.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ],
-  "globals": {
-    "sinon": true
-  }
-}
diff --git a/packages/extension/test/helpers/background.js b/packages/extension/test/helpers/background.js
index c883ffa9f0f3..1d3445657ef5 100644
--- a/packages/extension/test/helpers/background.js
+++ b/packages/extension/test/helpers/background.js
@@ -1,22 +1,24 @@
-(function() {
+/* global chrome, io */
+
+(function () {
   var HOST, PATH, automation, client, fail, invoke,
-    slice = [].slice;
+    slice = [].slice
 
-  HOST = "CHANGE_ME_HOST";
+  HOST = 'CHANGE_ME_HOST'
 
-  PATH = "CHANGE_ME_PATH";
+  PATH = 'CHANGE_ME_PATH'
 
   client = io.connect(HOST, {
-    path: PATH
-  });
+    path: PATH,
+  })
 
   automation = {
-    getAllCookies: function(filter, fn) {
+    getAllCookies: function (filter, fn) {
       if (filter == null) {
-        filter = {};
+        filter = {}
       }
-      return chrome.cookies.getAll(filter, fn);
-    }
-  };
 
-}).call(this);
+      return chrome.cookies.getAll(filter, fn)
+    },
+  }
+}).call(this)
diff --git a/packages/extension/tsconfig.json b/packages/extension/tsconfig.json
index aa782866197b..869a34579024 100644
--- a/packages/extension/tsconfig.json
+++ b/packages/extension/tsconfig.json
@@ -2,6 +2,6 @@
   "extends": "../ts/tsconfig.json",
   "compilerOptions": {
     "target": "es2015",
-    "strict": false
-  }
+    "strict": false,
+  },
 }

From 2869f9a0aaa9a4df3e396f94c4a45148638a5e23 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 13:25:15 -0500
Subject: [PATCH 048/127] basic linting for packages/frontend-shared

---
 eslint.config.ts                              | 12 ++++
 packages/frontend-shared/.eslintignore        |  6 --
 packages/frontend-shared/.eslintrc.json       | 60 -------------------
 .../cypress/support/customPercyCommand.ts     | 11 ++--
 .../frontend-shared/cypress/support/e2e.ts    | 14 ++---
 .../support/mock-graphql/clientTestUtils.ts   |  2 +-
 .../support/mock-graphql/fake-uuid.d.ts       |  4 +-
 .../support/mock-graphql/mountFragment.ts     |  2 +-
 .../mock-graphql/stubgql-ErrorWrapper.ts      |  2 +-
 .../support/mock-graphql/stubgql-Mutation.ts  |  2 +-
 .../support/mock-graphql/stubgql-Registry.ts  |  4 +-
 packages/frontend-shared/eslint.config.ts     | 25 ++++++++
 packages/frontend-shared/package.json         |  2 +-
 .../src/components/AlertHeader.vue            |  1 -
 .../frontend-shared/src/components/Badge.vue  |  2 +-
 .../src/components/ButtonInternals.vue        |  1 -
 .../src/components/Icon.cy.tsx                |  3 +-
 .../frontend-shared/src/components/Input.vue  |  2 +-
 .../src/components/ResultCounts.vue           |  2 +-
 .../src/components/ShikiHighlight.cy.tsx      |  2 +-
 .../modals/SelectCloudProjectModal.vue        |  2 +-
 .../frontend-shared/src/graphql/urqlClient.ts |  2 +-
 .../src/warning/Warning.cy.tsx                |  1 -
 packages/frontend-shared/tsconfig.json        |  1 +
 packages/frontend-shared/vue-shims.d.ts       |  8 +--
 25 files changed, 70 insertions(+), 103 deletions(-)
 delete mode 100644 packages/frontend-shared/.eslintignore
 delete mode 100644 packages/frontend-shared/.eslintrc.json
 create mode 100644 packages/frontend-shared/eslint.config.ts

diff --git a/eslint.config.ts b/eslint.config.ts
index 77049cd76ef6..e37bf9d7fd81 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -1,5 +1,6 @@
 import js from '@eslint/js'
 import ts, { InfiniteDepthConfigWithExtends } from 'typescript-eslint'
+// @ts-expect-error
 import cy from 'eslint-plugin-cypress/flat'
 import mocha from 'eslint-plugin-mocha'
 import globals from 'globals'
@@ -32,7 +33,18 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       parserOptions: {
         parser: ts.parser,
         projectService: true,
+        extraFileExtensions: ['.vue'],
+        ecmaFeatures: {
+          jsx: true,
+        },
       },
+    },
+  },
+
+  // common node files
+  {
+    files: ['vite.config.mjs', 'webpack.config.*'],
+    languageOptions: {
       globals: {
         ...globals.node,
       },
diff --git a/packages/frontend-shared/.eslintignore b/packages/frontend-shared/.eslintignore
deleted file mode 100644
index b491744f208d..000000000000
--- a/packages/frontend-shared/.eslintignore
+++ /dev/null
@@ -1,6 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
-**/generated
\ No newline at end of file
diff --git a/packages/frontend-shared/.eslintrc.json b/packages/frontend-shared/.eslintrc.json
deleted file mode 100644
index c31464dcd46d..000000000000
--- a/packages/frontend-shared/.eslintrc.json
+++ /dev/null
@@ -1,60 +0,0 @@
-{
-  "globals": {
-    "defineProps": "readonly",
-    "defineEmits": "readonly",
-    "defineExpose": "readonly",
-    "withDefaults": "readonly"
-  },
-  "plugins": [
-    "cypress",
-    "@cypress/dev"
-  ],
-  "extends": [
-    "plugin:@cypress/dev/general",
-    "plugin:@cypress/dev/tests",
-    "plugin:vue/vue3-recommended"
-  ],
-  "parser": "vue-eslint-parser",
-  "parserOptions": {
-    "parser": "@typescript-eslint/parser"
-  },
-  "env": {
-    "cypress/globals": true
-  },
-  "overrides": [
-    {
-      "files": "**/*.vue",
-      "rules": {
-        "vue/no-v-html": "off",
-        "no-spaced-func": "off",
-        "no-restricted-imports": [
-          "error",
-          {
-            "patterns": [
-              "@packages/graphql/*"
-            ]
-          }
-        ]
-      }
-    },
-    {
-      "files": [
-        "*.tsx",
-        "*.jsx"
-      ],
-      "rules": {
-        "react/jsx-no-bind": "off",
-        "react/react-in-jsx-scope": "off",
-        "react/no-unknown-property": [
-          "error",
-          {
-            "ignore": [
-              "class",
-              "for"
-            ]
-          }
-        ]
-      }
-    }
-  ]
-}
diff --git a/packages/frontend-shared/cypress/support/customPercyCommand.ts b/packages/frontend-shared/cypress/support/customPercyCommand.ts
index ad714edf3ad8..eb3dfd7da0b9 100644
--- a/packages/frontend-shared/cypress/support/customPercyCommand.ts
+++ b/packages/frontend-shared/cypress/support/customPercyCommand.ts
@@ -3,7 +3,7 @@
 import '@percy/cypress'
 import type { SnapshotOptions } from '@percy/core'
 
-export interface CustomSnapshotOptions extends SnapshotOptions{
+export interface CustomSnapshotOptions extends SnapshotOptions {
   /**
    * width of the snapshot taken from the left edge of the viewport
    * @default - The test's viewportWidth
@@ -28,7 +28,7 @@ export interface CustomSnapshotOptions extends SnapshotOptions{
   elementOverrides?: Record<string, ((el$: JQuery) => void) | true>
 }
 
-interface SnapshotMutationOptions{
+interface SnapshotMutationOptions {
   log?: string
   defaultWidth: number
   defaultHeight: number
@@ -39,7 +39,7 @@ interface SnapshotMutationOptions{
 
 declare global {
   namespace Cypress {
-    interface Chainable{
+    interface Chainable {
       /**
        * A custom Percy command that allows for additional mutations prior to snapshot generation. Mutations will be
        * reset after snapshot generation so that the AUT is not polluted after the command executes.
@@ -84,7 +84,6 @@ class ElementOverrideManager {
     })
 
     Object.entries(overrides).forEach(([k, v]) => {
-      // eslint-disable-next-line cypress/no-assigning-return-values
       const $el = cy.$$(k)
 
       if (typeof v === 'function') {
@@ -189,7 +188,7 @@ const applySnapshotMutations = ({
   })
 }
 
-export const installCustomPercyCommand = ({ before, elementOverrides }: {before?: () => void, elementOverrides?: CustomSnapshotOptions['elementOverrides'], isComponentTesting?: boolean } = {}) => {
+export const installCustomPercyCommand = ({ before, elementOverrides }: { before?: () => void, elementOverrides?: CustomSnapshotOptions['elementOverrides'], isComponentTesting?: boolean } = {}) => {
   /**
    * A custom Percy command that allows for additional mutations prior to snapshot generation. Mutations will be
    * reset after snapshot generation so that the AUT is not polluted after the command executes.
@@ -254,7 +253,7 @@ export const installCustomPercyCommand = ({ before, elementOverrides }: {before?
 
     // Percy v3.1.0 will timeout waiting for response from server if screenshot
     // takes longer than defaultCommandTimeout, so we hack around it
-    // eslint-disable-next-line
+
     const _backupTimeout = Cypress.config('defaultCommandTimeout')
 
     Cypress.config('defaultCommandTimeout', 10000)
diff --git a/packages/frontend-shared/cypress/support/e2e.ts b/packages/frontend-shared/cypress/support/e2e.ts
index 2b365631743c..668d54a1148f 100644
--- a/packages/frontend-shared/cypress/support/e2e.ts
+++ b/packages/frontend-shared/cypress/support/e2e.ts
@@ -62,7 +62,7 @@ export interface RemoteGraphQLBatchInterceptPayload<T> {
   result: T
 }
 
-export type RemoteGraphQLInterceptor <T = {[key: string]: any}> = (
+export type RemoteGraphQLInterceptor<T = { [key: string]: any }> = (
   obj: RemoteGraphQLInterceptPayload, testState: Record<string, any>, options: Record<string, any>) => ExecutionResult<T> | Promise<ExecutionResult<T>> | Response
 
 export type RemoteGraphQLBatchInterceptor<T = any> = (obj: RemoteGraphQLBatchInterceptPayload<T>, testState: Record<string, any>) => T | Promise<T>
@@ -240,7 +240,7 @@ function openGlobalMode (options: OpenGlobalModeOptions = {}) {
   })
 }
 
-type WithPrefix<T extends string> = `${T}${string}`;
+type WithPrefix<T extends string> = `${T}${string}`
 
 function openProject (projectName: WithPrefix<ProjectFixtureDir>, argv: string[] = []) {
   if (!fixtureDirs.some((dir) => projectName.startsWith(dir))) {
@@ -283,7 +283,7 @@ function startAppServer (mode: 'component' | 'e2e' = 'e2e', options: { skipMocki
         // Used to format a Cypress error in a way that makes sense to the cy-in-cy
         // open mode reporter. Typically we'll see all the details we need in the
         // terminal or in the Cypress UI components, but in the reporter we need to format it a bit
-        function formatError (e: Error & {messageMarkdown?: string, originalError?: Error}) {
+        function formatError (e: Error & { messageMarkdown?: string, originalError?: Error }) {
           if (e.messageMarkdown) {
             e.message = e.messageMarkdown
             if (e.originalError) {
@@ -425,8 +425,8 @@ function skipWelcome () {
 type UnwrapPromise<R> = R extends PromiseLike<infer U> ? U : R
 
 export type CyTaskResult<R> =
-  {value?: never, error: {name: string, message: string, stack?: string}} |
-  {value: UnwrapPromise<R>, error?: never}
+  { value?: never, error: { name: string, message: string, stack?: string } } |
+  { value: UnwrapPromise<R>, error?: never }
 
 function withRetryableCtx<T extends Partial<WithCtxOptions>, R> (fn: (ctx: DataContext, o: T & WithCtxInjected) => R | Promise<R>, opts: T = {} as T): Cypress.Chainable<UnwrapPromise<R>> {
   return withCtx(fn, { ...opts, retry: true })
@@ -515,7 +515,7 @@ function findBrowsers (options: FindBrowsersOptions = {}) {
   })
 }
 
-function remoteGraphQLIntercept <T = any> (fn: RemoteGraphQLInterceptor<T>, remoteGraphQLOptions?: Record<string, any>) {
+function remoteGraphQLIntercept<T = any> (fn: RemoteGraphQLInterceptor<T>, remoteGraphQLOptions?: Record<string, any>) {
   return logInternal('remoteGraphQLIntercept', () => {
     return taskInternal('__internal_remoteGraphQLIntercept', {
       fn: fn.toString(),
@@ -524,7 +524,7 @@ function remoteGraphQLIntercept <T = any> (fn: RemoteGraphQLInterceptor<T>, remo
   })
 }
 
-function remoteGraphQLInterceptBatched <T = any> (fn: RemoteGraphQLBatchInterceptor<T>) {
+function remoteGraphQLInterceptBatched<T = any> (fn: RemoteGraphQLBatchInterceptor<T>) {
   return logInternal('remoteGraphQLInterceptBatched', () => {
     return taskInternal('__internal_remoteGraphQLInterceptBatched', fn.toString())
   })
diff --git a/packages/frontend-shared/cypress/support/mock-graphql/clientTestUtils.ts b/packages/frontend-shared/cypress/support/mock-graphql/clientTestUtils.ts
index 113eee844d80..8e8957261ef6 100644
--- a/packages/frontend-shared/cypress/support/mock-graphql/clientTestUtils.ts
+++ b/packages/frontend-shared/cypress/support/mock-graphql/clientTestUtils.ts
@@ -36,7 +36,7 @@ export function resetTestNodeIdx () {
   nodeIdx = {}
 }
 
-export function testNodeId <T extends TypesWithId> (type: T, title?: string) {
+export function testNodeId<T extends TypesWithId> (type: T, title?: string) {
   nodeIdx[type] = (nodeIdx[type] ?? 0) + 1
 
   const id = title ? `${type}:${nodeIdx[type]}:${title}` : `${type}:${nodeIdx[type]}`
diff --git a/packages/frontend-shared/cypress/support/mock-graphql/fake-uuid.d.ts b/packages/frontend-shared/cypress/support/mock-graphql/fake-uuid.d.ts
index b88f6a1cf20c..14a1ae9c0992 100644
--- a/packages/frontend-shared/cypress/support/mock-graphql/fake-uuid.d.ts
+++ b/packages/frontend-shared/cypress/support/mock-graphql/fake-uuid.d.ts
@@ -1,5 +1,5 @@
 declare module 'fake-uuid' {
-  type A_to_F = 'a' | 'b' | 'c' | 'd' | 'e' | 'f' 
+  type A_to_F = 'a' | 'b' | 'c' | 'd' | 'e' | 'f'
   const fakeUuid: (input?: A_to_F | number, fill?: number | A_to_F) => string
   export default fakeUuid
-}
\ No newline at end of file
+}
diff --git a/packages/frontend-shared/cypress/support/mock-graphql/mountFragment.ts b/packages/frontend-shared/cypress/support/mock-graphql/mountFragment.ts
index 9a96cd50a523..a4ebb293a82a 100644
--- a/packages/frontend-shared/cypress/support/mock-graphql/mountFragment.ts
+++ b/packages/frontend-shared/cypress/support/mock-graphql/mountFragment.ts
@@ -159,7 +159,7 @@ export const registerMountFn = ({ plugins }: MountFnOptions = {}) => {
     subscriptionHooks.set(name, hook)
   }
 
-  function stubSubscriptionEvent <T extends TypedDocumentNode<any, any>> (
+  function stubSubscriptionEvent<T extends TypedDocumentNode<any, any>> (
     document: T,
     emitEvent: () => ResultOf<T>,
   ) {
diff --git a/packages/frontend-shared/cypress/support/mock-graphql/stubgql-ErrorWrapper.ts b/packages/frontend-shared/cypress/support/mock-graphql/stubgql-ErrorWrapper.ts
index d84d25a9776f..b03beec1c78c 100644
--- a/packages/frontend-shared/cypress/support/mock-graphql/stubgql-ErrorWrapper.ts
+++ b/packages/frontend-shared/cypress/support/mock-graphql/stubgql-ErrorWrapper.ts
@@ -46,5 +46,5 @@ export const StubErrorWrapper = {
 } as const
 
 // For type checking
-// eslint-disable-next-line @typescript-eslint/no-unused-vars
+
 const _typeCheck: MaybeResolver<ErrorWrapper> = StubErrorWrapper
diff --git a/packages/frontend-shared/cypress/support/mock-graphql/stubgql-Mutation.ts b/packages/frontend-shared/cypress/support/mock-graphql/stubgql-Mutation.ts
index 8b2122cba26e..866ee5d757f4 100644
--- a/packages/frontend-shared/cypress/support/mock-graphql/stubgql-Mutation.ts
+++ b/packages/frontend-shared/cypress/support/mock-graphql/stubgql-Mutation.ts
@@ -148,7 +148,7 @@ export const stubMutation: MaybeResolver<Mutation> = {
     return args.ids.map((id) => {
       const [__typename, hash] = atob(id).split(':')
 
-      const rf: RemoteFetchable & {__typename: string} = {
+      const rf: RemoteFetchable & { __typename: string } = {
         id,
         fetchingStatus: 'FETCHING',
         operation: '',
diff --git a/packages/frontend-shared/cypress/support/mock-graphql/stubgql-Registry.ts b/packages/frontend-shared/cypress/support/mock-graphql/stubgql-Registry.ts
index 384862cb8687..e00bda9f39e8 100644
--- a/packages/frontend-shared/cypress/support/mock-graphql/stubgql-Registry.ts
+++ b/packages/frontend-shared/cypress/support/mock-graphql/stubgql-Registry.ts
@@ -8,7 +8,7 @@ import { stubMigration } from './stubgql-Migration'
 import type { CodegenTypeMap } from '../generated/test-graphql-types.gen'
 import { StubErrorWrapper } from './stubgql-ErrorWrapper'
 
-type MaybeResolveMap = {[K in keyof CodegenTypeMap]: MaybeResolver<CodegenTypeMap[K]>}
+type MaybeResolveMap = { [K in keyof CodegenTypeMap]: MaybeResolver<CodegenTypeMap[K]> }
 
 export const GQLStubRegistry = {
   Wizard: stubWizard,
@@ -28,5 +28,5 @@ export const GQLStubRegistry = {
 } as const
 
 // For Type checking
-// eslint-disable-next-line @typescript-eslint/no-unused-vars
+
 const _x: Partial<MaybeResolveMap> = GQLStubRegistry
diff --git a/packages/frontend-shared/eslint.config.ts b/packages/frontend-shared/eslint.config.ts
new file mode 100644
index 000000000000..15c3b08f2a41
--- /dev/null
+++ b/packages/frontend-shared/eslint.config.ts
@@ -0,0 +1,25 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['**/generated/**/*'],
+  },
+  {
+    files: ['index.js'],
+    languageOptions: {
+      globals: {
+        process: 'readonly',
+      },
+    },
+  },
+  {
+    files: ['script/**/*'],
+    languageOptions: {
+      globals: {
+        ...globals.node,
+      },
+    },
+  },
+]
diff --git a/packages/frontend-shared/package.json b/packages/frontend-shared/package.json
index d40c772d1eaa..cf969c4da371 100644
--- a/packages/frontend-shared/package.json
+++ b/packages/frontend-shared/package.json
@@ -14,7 +14,7 @@
     "generate-shiki-theme": "node ./script/generate-shiki-theme.js",
     "generate-stub-specs": "node ./script/generate-stub-specs.js",
     "postinstall": "patch-package",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json,.vue .",
+    "lint": "eslint .",
     "test": "yarn cypress:run && yarn types"
   },
   "dependencies": {
diff --git a/packages/frontend-shared/src/components/AlertHeader.vue b/packages/frontend-shared/src/components/AlertHeader.vue
index 65cf9937ac6a..4111131e744f 100644
--- a/packages/frontend-shared/src/components/AlertHeader.vue
+++ b/packages/frontend-shared/src/components/AlertHeader.vue
@@ -51,7 +51,6 @@ const emit = defineEmits<{
   (eventName: 'suffixIconClicked'): void
 }>()
 
-/* eslint-disable vue/require-default-prop */
 defineProps<{
   title: string
   prefixIcon?: FunctionalComponent<SVGAttributes, {}> | null
diff --git a/packages/frontend-shared/src/components/Badge.vue b/packages/frontend-shared/src/components/Badge.vue
index aed7d9d36ff5..d5cfd956d6c4 100644
--- a/packages/frontend-shared/src/components/Badge.vue
+++ b/packages/frontend-shared/src/components/Badge.vue
@@ -1,5 +1,5 @@
 <script lang="ts">
-export type BadgeRowStatus = 'success' | 'warning' | 'error' | 'skipped' | 'disabled';
+export type BadgeRowStatus = 'success' | 'warning' | 'error' | 'skipped' | 'disabled'
 
 export const statusClassesObject: Record<BadgeRowStatus, string> = {
   disabled: 'bg-gray-50 text-gray-500',
diff --git a/packages/frontend-shared/src/components/ButtonInternals.vue b/packages/frontend-shared/src/components/ButtonInternals.vue
index e567871cc98f..34894aab5b0d 100644
--- a/packages/frontend-shared/src/components/ButtonInternals.vue
+++ b/packages/frontend-shared/src/components/ButtonInternals.vue
@@ -36,7 +36,6 @@ export default defineComponent({
 
 <script lang="ts" setup>
 
-// eslint-disable-next-line no-duplicate-imports
 import type { FunctionalComponent, SVGAttributes } from 'vue'
 
 defineProps<{
diff --git a/packages/frontend-shared/src/components/Icon.cy.tsx b/packages/frontend-shared/src/components/Icon.cy.tsx
index 55c9fe3ca26e..4e3cde7a3c3c 100644
--- a/packages/frontend-shared/src/components/Icon.cy.tsx
+++ b/packages/frontend-shared/src/components/Icon.cy.tsx
@@ -39,8 +39,7 @@ describe('<Icon />', () => {
       { textSizes.map((size, i) => (
         <span class={`text-${size} text-${colors[i]}-500 text-center`}>
           {size }<Icon icon={IconHeart}></Icon>
-        </span>))
-      }
+        </span>))}
     </div>
     ))
   })
diff --git a/packages/frontend-shared/src/components/Input.vue b/packages/frontend-shared/src/components/Input.vue
index f4625a718e8a..6b0ff6617942 100644
--- a/packages/frontend-shared/src/components/Input.vue
+++ b/packages/frontend-shared/src/components/Input.vue
@@ -66,7 +66,7 @@ export default {
 import _ from 'lodash'
 
 import type { InputHTMLAttributes, FunctionalComponent, SVGAttributes, Ref } from 'vue'
-// eslint-disable-next-line no-duplicate-imports
+
 import { computed, useSlots, useAttrs } from 'vue'
 import { useModelWrapper } from '../composables'
 
diff --git a/packages/frontend-shared/src/components/ResultCounts.vue b/packages/frontend-shared/src/components/ResultCounts.vue
index d94e4c42aae4..583a9fb5b5ba 100644
--- a/packages/frontend-shared/src/components/ResultCounts.vue
+++ b/packages/frontend-shared/src/components/ResultCounts.vue
@@ -42,7 +42,7 @@ const { t } = useI18n()
 
 const props = defineProps<ResultCountsProps>()
 
-type CountType= 'SKIPPED' | 'PENDING' | 'PASSED' | 'FAILED'
+type CountType = 'SKIPPED' | 'PENDING' | 'PASSED' | 'FAILED'
 
 interface Status {
   value: number | string | null
diff --git a/packages/frontend-shared/src/components/ShikiHighlight.cy.tsx b/packages/frontend-shared/src/components/ShikiHighlight.cy.tsx
index 509e0886849e..c4b679b07b1f 100644
--- a/packages/frontend-shared/src/components/ShikiHighlight.cy.tsx
+++ b/packages/frontend-shared/src/components/ShikiHighlight.cy.tsx
@@ -49,7 +49,7 @@ describe('<ShikiHighlight/>', { viewportWidth: 800, viewportHeight: 500 }, () =>
     const numLines = 15
 
     // Whitespace
-    // eslint-disable-next-line
+
     const code = `
     
 
diff --git a/packages/frontend-shared/src/gql-components/modals/SelectCloudProjectModal.vue b/packages/frontend-shared/src/gql-components/modals/SelectCloudProjectModal.vue
index 3e4324a668c2..08919e2ef1ed 100644
--- a/packages/frontend-shared/src/gql-components/modals/SelectCloudProjectModal.vue
+++ b/packages/frontend-shared/src/gql-components/modals/SelectCloudProjectModal.vue
@@ -313,7 +313,7 @@ const emit = defineEmits<{
 }>()
 
 const isInternalServerError = ref(false)
-const graphqlError = ref<{ extension: string, message: string} | undefined>()
+const graphqlError = ref<{ extension: string, message: string } | undefined>()
 const projectName = ref(props.gql.currentProject?.title || '')
 const projectAccess = ref<'private' | 'public'>('private')
 const organizationOptions = computed(() => {
diff --git a/packages/frontend-shared/src/graphql/urqlClient.ts b/packages/frontend-shared/src/graphql/urqlClient.ts
index 22163a205a66..55e23b2e016e 100644
--- a/packages/frontend-shared/src/graphql/urqlClient.ts
+++ b/packages/frontend-shared/src/graphql/urqlClient.ts
@@ -102,7 +102,7 @@ declare global {
     __CYPRESS_MODE__: 'run' | 'open'
     __RUN_MODE_SPECS__: SpecFile[]
     __CYPRESS_TESTING_TYPE__: 'e2e' | 'component'
-    __CYPRESS_BROWSER__: Partial<Browser> & {majorVersion: string | number}
+    __CYPRESS_BROWSER__: Partial<Browser> & { majorVersion: string | number }
     __CYPRESS_CONFIG__: {
       base64Config: string
       namespace: AutomationElementId
diff --git a/packages/frontend-shared/src/warning/Warning.cy.tsx b/packages/frontend-shared/src/warning/Warning.cy.tsx
index 8e2bbb230d5b..50b0b429e4a2 100644
--- a/packages/frontend-shared/src/warning/Warning.cy.tsx
+++ b/packages/frontend-shared/src/warning/Warning.cy.tsx
@@ -50,7 +50,6 @@ describe('<Warning />', () => {
   })
 
   it('renders with a Learn more Link', () => {
-    // eslint-disable-next-line prefer-template
     const messagePlusLink = message + '[Learn more](https://on.cypress.io/git-info)'
 
     cy.mount(() => (<div class="p-4"><Warning
diff --git a/packages/frontend-shared/tsconfig.json b/packages/frontend-shared/tsconfig.json
index 4c289529abac..ceb086a2de58 100644
--- a/packages/frontend-shared/tsconfig.json
+++ b/packages/frontend-shared/tsconfig.json
@@ -20,5 +20,6 @@
       "cypress-real-events", 
       "cypress"
     ],
+    "allowJs": true,
   }
 }
diff --git a/packages/frontend-shared/vue-shims.d.ts b/packages/frontend-shared/vue-shims.d.ts
index fd758ac762cf..2b1c913182f5 100644
--- a/packages/frontend-shared/vue-shims.d.ts
+++ b/packages/frontend-shared/vue-shims.d.ts
@@ -5,27 +5,27 @@ declare module 'virtual:*' {
 }
 
 declare module 'virtual:icons/*' {
-  // eslint-disable-next-line no-duplicate-imports
+
   import { FunctionalComponent, SVGAttributes } from 'vue'
   const component: FunctionalComponent<SVGAttributes>
   export default component
 }
 declare module '~icons/*' {
-  // eslint-disable-next-line no-duplicate-imports
+
   import { FunctionalComponent, SVGAttributes } from 'vue'
   const component: FunctionalComponent<SVGAttributes>
   export default component
 }
 
 declare module '~icons/cy/*' {
-  // eslint-disable-next-line no-duplicate-imports
+
   import { FunctionalComponent, SVGAttributes } from 'vue'
   const component: FunctionalComponent<SVGAttributes>
   export default component
 }
 
 declare module '~icons/mdi/*' {
-  // eslint-disable-next-line no-duplicate-imports
+
   import { FunctionalComponent, SVGAttributes } from 'vue'
   const component: FunctionalComponent<SVGAttributes>
   export default component

From df2001767790c544cffc20511e8e059de810d3d6 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 13:50:14 -0500
Subject: [PATCH 049/127] basic graphql schema linting

---
 eslint.config.ts                          |   7 +
 package.json                              |   1 +
 packages/frontend-shared/eslint.config.ts |   5 +
 yarn.lock                                 | 853 +++++++++++++---------
 4 files changed, 509 insertions(+), 357 deletions(-)

diff --git a/eslint.config.ts b/eslint.config.ts
index e37bf9d7fd81..5cb611189cdf 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -7,6 +7,7 @@ import globals from 'globals'
 import path from 'path'
 import vue from 'eslint-plugin-vue'
 import stylistic from '@stylistic/eslint-plugin'
+import * as graphql from '@graphql-eslint/eslint-plugin'
 
 /**
  * baseConfig should be imported by other packages that define their own eslint.config.ts
@@ -41,6 +42,12 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
     },
   },
 
+  // graphql parser
+  {
+    files: ['*.graphql'],
+    ...graphql.flatConfigs['operations-recommended'],
+  },
+
   // common node files
   {
     files: ['vite.config.mjs', 'webpack.config.*'],
diff --git a/package.json b/package.json
index 288da162e370..22cae1ab3bb1 100644
--- a/package.json
+++ b/package.json
@@ -151,6 +151,7 @@
     "@graphql-codegen/typescript-operations": "2.2.3",
     "@graphql-codegen/typescript-resolvers": "^2.6.4",
     "@graphql-codegen/typescript-urql-graphcache": "2.2.3",
+    "@graphql-eslint/eslint-plugin": "^3",
     "@graphql-tools/delegate": "8.2.1",
     "@graphql-tools/utils": "8.2.3",
     "@graphql-tools/wrap": "8.1.1",
diff --git a/packages/frontend-shared/eslint.config.ts b/packages/frontend-shared/eslint.config.ts
index 15c3b08f2a41..bd89a65f7888 100644
--- a/packages/frontend-shared/eslint.config.ts
+++ b/packages/frontend-shared/eslint.config.ts
@@ -1,5 +1,6 @@
 import { baseConfig } from '../../eslint.config'
 import globals from 'globals'
+import * as graphql from '@graphql-eslint/eslint-plugin'
 
 export default [
   ...baseConfig,
@@ -22,4 +23,8 @@ export default [
       },
     },
   },
+  {
+    files: ['**/*.vue', '**/*.jsx'],
+    
+  }
 ]
diff --git a/yarn.lock b/yarn.lock
index c0cd1708d9af..cd4f317e2de5 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -132,10 +132,12 @@
   resolved "https://registry.yarnpkg.com/@antfu/utils/-/utils-0.7.8.tgz#86cb0974bcab7e64e29b57d6d9021102307257de"
   integrity sha512-rWQkqXRESdjXtc+7NRfK9lASQjpXJu1ayp7qi1d23zZorY+wBHVLHHoVcMsEnkqEBWTFqbztO7/QdJFzyEcLTg==
 
-"@ardatan/fetch-event-source@2.0.2":
-  version "2.0.2"
-  resolved "https://registry.yarnpkg.com/@ardatan/fetch-event-source/-/fetch-event-source-2.0.2.tgz#734aa3eaa0da456453d24d8dc7c14d5e366a8d21"
-  integrity sha512-mcpz/wJ7s50PJIVz4OQ1Yim3w/AAchtYtIg0QMWiMR2cZZoI9t23hRyqeumtD5EmyJu0fxtjmQ5WY8GI86V4rQ==
+"@ardatan/sync-fetch@^0.0.1":
+  version "0.0.1"
+  resolved "https://registry.yarnpkg.com/@ardatan/sync-fetch/-/sync-fetch-0.0.1.tgz#3385d3feedceb60a896518a1db857ec1e945348f"
+  integrity sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA==
+  dependencies:
+    node-fetch "^2.6.1"
 
 "@aws-crypto/crc32@3.0.0":
   version "3.0.0"
@@ -1379,7 +1381,7 @@
     "@babel/highlight" "^7.24.7"
     picocolors "^1.0.0"
 
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.14.5", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.7":
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.7", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.2":
   version "7.26.2"
   resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85"
   integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==
@@ -1423,7 +1425,7 @@
     eslint-visitor-keys "^2.1.0"
     semver "^6.3.1"
 
-"@babel/generator@7.25.0", "@babel/generator@^7.15.4", "@babel/generator@^7.15.8", "@babel/generator@^7.25.0", "@babel/generator@^7.5.0":
+"@babel/generator@7.25.0":
   version "7.25.0"
   resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.25.0.tgz#f858ddfa984350bc3d3b7f125073c9af6988f18e"
   integrity sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==
@@ -1433,6 +1435,17 @@
     "@jridgewell/trace-mapping" "^0.3.25"
     jsesc "^2.5.1"
 
+"@babel/generator@^7.15.8", "@babel/generator@^7.25.0", "@babel/generator@^7.26.5", "@babel/generator@^7.5.0":
+  version "7.26.5"
+  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.5.tgz#e44d4ab3176bbcaf78a5725da5f1dc28802a9458"
+  integrity sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==
+  dependencies:
+    "@babel/parser" "^7.26.5"
+    "@babel/types" "^7.26.5"
+    "@jridgewell/gen-mapping" "^0.3.5"
+    "@jridgewell/trace-mapping" "^0.3.25"
+    jsesc "^3.0.2"
+
 "@babel/helper-annotate-as-pure@^7.24.7":
   version "7.24.7"
   resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz#5373c7bc8366b12a033b4be1ac13a206c6656aab"
@@ -1500,7 +1513,7 @@
     lodash.debounce "^4.0.8"
     resolve "^1.14.2"
 
-"@babel/helper-function-name@^7.15.4", "@babel/helper-function-name@^7.18.6":
+"@babel/helper-function-name@^7.18.6":
   version "7.24.7"
   resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz#75f1e1725742f39ac6584ee0b16d94513da38dd2"
   integrity sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==
@@ -1508,13 +1521,6 @@
     "@babel/template" "^7.24.7"
     "@babel/types" "^7.24.7"
 
-"@babel/helper-hoist-variables@^7.15.4":
-  version "7.24.7"
-  resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz#b4ede1cde2fd89436397f30dc9376ee06b0f25ee"
-  integrity sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==
-  dependencies:
-    "@babel/types" "^7.24.7"
-
 "@babel/helper-member-expression-to-functions@^7.24.8":
   version "7.24.8"
   resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz#6155e079c913357d24a4c20480db7c712a5c3fb6"
@@ -1594,19 +1600,12 @@
     "@babel/traverse" "^7.24.7"
     "@babel/types" "^7.24.7"
 
-"@babel/helper-split-export-declaration@^7.15.4":
-  version "7.24.7"
-  resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz#83949436890e07fa3d6873c61a96e3bbf692d856"
-  integrity sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==
-  dependencies:
-    "@babel/types" "^7.24.7"
-
-"@babel/helper-string-parser@^7.24.8":
-  version "7.24.8"
-  resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz#5b3329c9a58803d5df425e5785865881a81ca48d"
-  integrity sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==
+"@babel/helper-string-parser@^7.24.8", "@babel/helper-string-parser@^7.25.9":
+  version "7.25.9"
+  resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz#1aabb72ee72ed35789b4bbcad3ca2862ce614e8c"
+  integrity sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==
 
-"@babel/helper-validator-identifier@^7.14.9", "@babel/helper-validator-identifier@^7.24.7", "@babel/helper-validator-identifier@^7.25.9":
+"@babel/helper-validator-identifier@^7.24.7", "@babel/helper-validator-identifier@^7.25.9":
   version "7.25.9"
   resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7"
   integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==
@@ -1634,27 +1633,29 @@
     "@babel/types" "^7.25.0"
 
 "@babel/highlight@^7.24.7":
-  version "7.24.7"
-  resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.7.tgz#a05ab1df134b286558aae0ed41e6c5f731bf409d"
-  integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==
+  version "7.25.9"
+  resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.25.9.tgz#8141ce68fc73757946f983b343f1231f4691acc6"
+  integrity sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==
   dependencies:
-    "@babel/helper-validator-identifier" "^7.24.7"
+    "@babel/helper-validator-identifier" "^7.25.9"
     chalk "^2.4.2"
     js-tokens "^4.0.0"
     picocolors "^1.0.0"
 
-"@babel/parser@7.15.6":
-  version "7.15.6"
-  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.15.6.tgz#043b9aa3c303c0722e5377fef9197f4cf1796549"
-  integrity sha512-S/TSCcsRuCkmpUuoWijua0Snt+f3ewU/8spLo+4AXJCZfT0bVCzLD5MuOKdrx0mlAptbKzn5AdgEIIKXxXkz9Q==
-
-"@babel/parser@7.25.3", "@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.15.4", "@babel/parser@^7.15.8", "@babel/parser@^7.16.4", "@babel/parser@^7.20.7", "@babel/parser@^7.23.0", "@babel/parser@^7.23.9", "@babel/parser@^7.24.4", "@babel/parser@^7.25.0", "@babel/parser@^7.25.3":
+"@babel/parser@7.25.3":
   version "7.25.3"
   resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.25.3.tgz#91fb126768d944966263f0657ab222a642b82065"
   integrity sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==
   dependencies:
     "@babel/types" "^7.25.2"
 
+"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.15.8", "@babel/parser@^7.16.4", "@babel/parser@^7.16.8", "@babel/parser@^7.20.7", "@babel/parser@^7.23.0", "@babel/parser@^7.23.9", "@babel/parser@^7.24.4", "@babel/parser@^7.25.0", "@babel/parser@^7.25.3", "@babel/parser@^7.25.9", "@babel/parser@^7.26.5":
+  version "7.26.5"
+  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.5.tgz#6fec9aebddef25ca57a935c86dbb915ae2da3e1f"
+  integrity sha512-SRJ4jYmXRqV1/Xc+TIVG84WjHBXKlxO9sHQnA2Pf12QQEAp1LOh6kDzNHXcUnbH1QI0FDoPPVOt+vyUDucxpaw==
+  dependencies:
+    "@babel/types" "^7.26.5"
+
 "@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.25.3":
   version "7.25.3"
   resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.3.tgz#dca427b45a6c0f5c095a1c639dfe2476a3daba7f"
@@ -1776,12 +1777,12 @@
   dependencies:
     "@babel/helper-plugin-utils" "^7.16.7"
 
-"@babel/plugin-syntax-import-assertions@^7.24.7":
-  version "7.24.7"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz#2a0b406b5871a20a841240586b1300ce2088a778"
-  integrity sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==
+"@babel/plugin-syntax-import-assertions@^7.20.0", "@babel/plugin-syntax-import-assertions@^7.24.7":
+  version "7.26.0"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz#620412405058efa56e4a564903b79355020f445f"
+  integrity sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.24.7"
+    "@babel/helper-plugin-utils" "^7.25.9"
 
 "@babel/plugin-syntax-import-attributes@^7.24.7":
   version "7.24.7"
@@ -2512,52 +2513,29 @@
   dependencies:
     regenerator-runtime "^0.14.0"
 
-"@babel/template@^7.23.9", "@babel/template@^7.24.7", "@babel/template@^7.25.0":
-  version "7.25.0"
-  resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.0.tgz#e733dc3134b4fede528c15bc95e89cb98c52592a"
-  integrity sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==
-  dependencies:
-    "@babel/code-frame" "^7.24.7"
-    "@babel/parser" "^7.25.0"
-    "@babel/types" "^7.25.0"
-
-"@babel/traverse@7.15.4":
-  version "7.15.4"
-  resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.15.4.tgz#ff8510367a144bfbff552d9e18e28f3e2889c22d"
-  integrity sha512-W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA==
-  dependencies:
-    "@babel/code-frame" "^7.14.5"
-    "@babel/generator" "^7.15.4"
-    "@babel/helper-function-name" "^7.15.4"
-    "@babel/helper-hoist-variables" "^7.15.4"
-    "@babel/helper-split-export-declaration" "^7.15.4"
-    "@babel/parser" "^7.15.4"
-    "@babel/types" "^7.15.4"
-    debug "^4.1.0"
-    globals "^11.1.0"
-
-"@babel/traverse@^7.0.0", "@babel/traverse@^7.15.4", "@babel/traverse@^7.18.9", "@babel/traverse@^7.23.9", "@babel/traverse@^7.24.7", "@babel/traverse@^7.24.8", "@babel/traverse@^7.25.0", "@babel/traverse@^7.25.1", "@babel/traverse@^7.25.2", "@babel/traverse@^7.25.3":
-  version "7.25.3"
-  resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.3.tgz#f1b901951c83eda2f3e29450ce92743783373490"
-  integrity sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==
-  dependencies:
-    "@babel/code-frame" "^7.24.7"
-    "@babel/generator" "^7.25.0"
-    "@babel/parser" "^7.25.3"
-    "@babel/template" "^7.25.0"
-    "@babel/types" "^7.25.2"
+"@babel/template@^7.23.9", "@babel/template@^7.24.7", "@babel/template@^7.25.0", "@babel/template@^7.25.9":
+  version "7.25.9"
+  resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.9.tgz#ecb62d81a8a6f5dc5fe8abfc3901fc52ddf15016"
+  integrity sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==
+  dependencies:
+    "@babel/code-frame" "^7.25.9"
+    "@babel/parser" "^7.25.9"
+    "@babel/types" "^7.25.9"
+
+"@babel/traverse@^7.0.0", "@babel/traverse@^7.15.4", "@babel/traverse@^7.16.8", "@babel/traverse@^7.18.9", "@babel/traverse@^7.23.9", "@babel/traverse@^7.24.7", "@babel/traverse@^7.24.8", "@babel/traverse@^7.25.0", "@babel/traverse@^7.25.1", "@babel/traverse@^7.25.2", "@babel/traverse@^7.25.3":
+  version "7.26.5"
+  resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.26.5.tgz#6d0be3e772ff786456c1a37538208286f6e79021"
+  integrity sha512-rkOSPOw+AXbgtwUga3U4u8RpoK9FEFWBNAlTpcnkLFjL5CT+oyHNuUUC/xx6XefEJ16r38r8Bc/lfp6rYuHeJQ==
+  dependencies:
+    "@babel/code-frame" "^7.26.2"
+    "@babel/generator" "^7.26.5"
+    "@babel/parser" "^7.26.5"
+    "@babel/template" "^7.25.9"
+    "@babel/types" "^7.26.5"
     debug "^4.3.1"
     globals "^11.1.0"
 
-"@babel/types@7.15.6":
-  version "7.15.6"
-  resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.15.6.tgz#99abdc48218b2881c058dd0a7ab05b99c9be758f"
-  integrity sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig==
-  dependencies:
-    "@babel/helper-validator-identifier" "^7.14.9"
-    to-fast-properties "^2.0.0"
-
-"@babel/types@7.25.2", "@babel/types@^7.0.0", "@babel/types@^7.15.4", "@babel/types@^7.15.6", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.20.7", "@babel/types@^7.21.3", "@babel/types@^7.22.15", "@babel/types@^7.23.9", "@babel/types@^7.24.7", "@babel/types@^7.24.8", "@babel/types@^7.25.0", "@babel/types@^7.25.2", "@babel/types@^7.4.4":
+"@babel/types@7.25.2":
   version "7.25.2"
   resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.25.2.tgz#55fb231f7dc958cd69ea141a4c2997e819646125"
   integrity sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==
@@ -2566,6 +2544,14 @@
     "@babel/helper-validator-identifier" "^7.24.7"
     to-fast-properties "^2.0.0"
 
+"@babel/types@^7.0.0", "@babel/types@^7.15.6", "@babel/types@^7.16.8", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.20.7", "@babel/types@^7.21.3", "@babel/types@^7.22.15", "@babel/types@^7.23.9", "@babel/types@^7.24.7", "@babel/types@^7.24.8", "@babel/types@^7.25.0", "@babel/types@^7.25.2", "@babel/types@^7.25.9", "@babel/types@^7.26.5", "@babel/types@^7.4.4":
+  version "7.26.5"
+  resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.5.tgz#7a1e1c01d28e26d1fe7f8ec9567b3b92b9d07747"
+  integrity sha512-L6mZmwFDK6Cjh1nRCLXpa6no13ZIioJDz7mdkzHv399pThrTa/k0nUlNaenOeh2kWu/iaOQYElEpKPUswUa9Vg==
+  dependencies:
+    "@babel/helper-string-parser" "^7.25.9"
+    "@babel/helper-validator-identifier" "^7.25.9"
+
 "@bahmutov/all-paths@1.0.2":
   version "1.0.2"
   resolved "https://registry.yarnpkg.com/@bahmutov/all-paths/-/all-paths-1.0.2.tgz#9ae0dcdf9022dd6e5e14d7fda3479e6a330d035b"
@@ -3069,16 +3055,6 @@
   dependencies:
     tslib "^2.4.0"
 
-"@endemolshinegroup/cosmiconfig-typescript-loader@3.0.2":
-  version "3.0.2"
-  resolved "https://registry.yarnpkg.com/@endemolshinegroup/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-3.0.2.tgz#eea4635828dde372838b0909693ebd9aafeec22d"
-  integrity sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==
-  dependencies:
-    lodash.get "^4"
-    make-error "^1"
-    ts-node "^9"
-    tslib "^2"
-
 "@esbuild/aix-ppc64@0.20.2":
   version "0.20.2"
   resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz#a70f4ac11c6a1dfc18b8bbb13284155d933b9537"
@@ -4036,6 +4012,23 @@
     parse-filepath "^1.0.2"
     tslib "~2.4.0"
 
+"@graphql-eslint/eslint-plugin@^3":
+  version "3.20.1"
+  resolved "https://registry.yarnpkg.com/@graphql-eslint/eslint-plugin/-/eslint-plugin-3.20.1.tgz#5ae22ee54a5624b852a7cb5f52a103da6384c643"
+  integrity sha512-RbwVlz1gcYG62sECR1u0XqMh8w5e5XMCCZoMvPQ3nJzEBCTfXLGX727GBoRmSvY1x4gJmqNZ1lsOX7lZY14RIw==
+  dependencies:
+    "@babel/code-frame" "^7.18.6"
+    "@graphql-tools/code-file-loader" "^7.3.6"
+    "@graphql-tools/graphql-tag-pluck" "^7.3.6"
+    "@graphql-tools/utils" "^9.0.0"
+    chalk "^4.1.2"
+    debug "^4.3.4"
+    fast-glob "^3.2.12"
+    graphql-config "^4.4.0"
+    graphql-depth-limit "^1.1.0"
+    lodash.lowercase "^4.3.0"
+    tslib "^2.4.1"
+
 "@graphql-tools/apollo-engine-loader@^7.0.5":
   version "7.1.0"
   resolved "https://registry.yarnpkg.com/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-7.1.0.tgz#12d58a459da976b496c7632bd41b76f3aceed48e"
@@ -4046,25 +4039,25 @@
     sync-fetch "0.3.0"
     tslib "~2.3.0"
 
-"@graphql-tools/batch-execute@^8.1.0", "@graphql-tools/batch-execute@^8.4.6":
-  version "8.4.6"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/batch-execute/-/batch-execute-8.4.6.tgz#6033cbf0b7d30c901ae4a1a7de7501aedf5a6a10"
-  integrity sha512-8O42fReZMssrA4HCkpK68RlRQz/QAvLfOkz+/6dDX2X7VgZtRx3VvFiJd2hFaGdNbLzklBWXF9E6hJdJGkEO5g==
+"@graphql-tools/batch-execute@^8.1.0", "@graphql-tools/batch-execute@^8.4.6", "@graphql-tools/batch-execute@^8.5.22":
+  version "8.5.22"
+  resolved "https://registry.yarnpkg.com/@graphql-tools/batch-execute/-/batch-execute-8.5.22.tgz#a742aa9d138fe794e786d8fb6429665dc7df5455"
+  integrity sha512-hcV1JaY6NJQFQEwCKrYhpfLK8frSXDbtNMoTur98u10Cmecy1zrqNKSqhEyGetpgHxaJRqszGzKeI3RuroDN6A==
   dependencies:
-    "@graphql-tools/utils" "8.6.9"
-    dataloader "2.1.0"
-    tslib "~2.3.0"
-    value-or-promise "1.0.11"
+    "@graphql-tools/utils" "^9.2.1"
+    dataloader "^2.2.2"
+    tslib "^2.4.0"
+    value-or-promise "^1.0.12"
 
-"@graphql-tools/code-file-loader@^7.0.6":
-  version "7.1.0"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/code-file-loader/-/code-file-loader-7.1.0.tgz#3fd040ce92510a12c361bac85d0d954951e231f5"
-  integrity sha512-1EVuKGzTDcZoPQAjJYy0Fw2vwLN1ZnWYDlCZLaqml87tCUzJcqcHlQw26SRhDEvVnJC/oCV+mH+2QE55UxqWuA==
+"@graphql-tools/code-file-loader@^7.0.6", "@graphql-tools/code-file-loader@^7.3.6":
+  version "7.3.23"
+  resolved "https://registry.yarnpkg.com/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz#33793f9a1f8e74981f8ae6ec4ab7061f9713db15"
+  integrity sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==
   dependencies:
-    "@graphql-tools/graphql-tag-pluck" "^7.1.0"
-    "@graphql-tools/utils" "^8.2.0"
+    "@graphql-tools/graphql-tag-pluck" "7.5.2"
+    "@graphql-tools/utils" "^9.2.1"
     globby "^11.0.3"
-    tslib "~2.3.0"
+    tslib "^2.4.0"
     unixify "^1.0.0"
 
 "@graphql-tools/delegate@8.2.1", "@graphql-tools/delegate@^8.2.0":
@@ -4079,6 +4072,68 @@
     tslib "~2.3.0"
     value-or-promise "1.0.10"
 
+"@graphql-tools/delegate@^9.0.31":
+  version "9.0.35"
+  resolved "https://registry.yarnpkg.com/@graphql-tools/delegate/-/delegate-9.0.35.tgz#94683f4bcec63520b4a6c8b2abf2e2e9324ea4f1"
+  integrity sha512-jwPu8NJbzRRMqi4Vp/5QX1vIUeUPpWmlQpOkXQD2r1X45YsVceyUUBnktCrlJlDB4jPRVy7JQGwmYo3KFiOBMA==
+  dependencies:
+    "@graphql-tools/batch-execute" "^8.5.22"
+    "@graphql-tools/executor" "^0.0.20"
+    "@graphql-tools/schema" "^9.0.19"
+    "@graphql-tools/utils" "^9.2.1"
+    dataloader "^2.2.2"
+    tslib "^2.5.0"
+    value-or-promise "^1.0.12"
+
+"@graphql-tools/executor-graphql-ws@^0.0.14":
+  version "0.0.14"
+  resolved "https://registry.yarnpkg.com/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-0.0.14.tgz#e0f53fc4cfc8a06cc461b2bc1edb4bb9a8e837ed"
+  integrity sha512-P2nlkAsPZKLIXImFhj0YTtny5NQVGSsKnhi7PzXiaHSXc6KkzqbWZHKvikD4PObanqg+7IO58rKFpGXP7eeO+w==
+  dependencies:
+    "@graphql-tools/utils" "^9.2.1"
+    "@repeaterjs/repeater" "3.0.4"
+    "@types/ws" "^8.0.0"
+    graphql-ws "5.12.1"
+    isomorphic-ws "5.0.0"
+    tslib "^2.4.0"
+    ws "8.13.0"
+
+"@graphql-tools/executor-http@^0.1.7":
+  version "0.1.10"
+  resolved "https://registry.yarnpkg.com/@graphql-tools/executor-http/-/executor-http-0.1.10.tgz#faf48e18e62a925796c9653c2f50cf2095bc8e6f"
+  integrity sha512-hnAfbKv0/lb9s31LhWzawQ5hghBfHS+gYWtqxME6Rl0Aufq9GltiiLBcl7OVVOnkLF0KhwgbYP1mB5VKmgTGpg==
+  dependencies:
+    "@graphql-tools/utils" "^9.2.1"
+    "@repeaterjs/repeater" "^3.0.4"
+    "@whatwg-node/fetch" "^0.8.1"
+    dset "^3.1.2"
+    extract-files "^11.0.0"
+    meros "^1.2.1"
+    tslib "^2.4.0"
+    value-or-promise "^1.0.12"
+
+"@graphql-tools/executor-legacy-ws@^0.0.11":
+  version "0.0.11"
+  resolved "https://registry.yarnpkg.com/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-0.0.11.tgz#a1e12be8279e92a363a23d4105461a34cd9e389e"
+  integrity sha512-4ai+NnxlNfvIQ4c70hWFvOZlSUN8lt7yc+ZsrwtNFbFPH/EroIzFMapAxM9zwyv9bH38AdO3TQxZ5zNxgBdvUw==
+  dependencies:
+    "@graphql-tools/utils" "^9.2.1"
+    "@types/ws" "^8.0.0"
+    isomorphic-ws "5.0.0"
+    tslib "^2.4.0"
+    ws "8.13.0"
+
+"@graphql-tools/executor@^0.0.20":
+  version "0.0.20"
+  resolved "https://registry.yarnpkg.com/@graphql-tools/executor/-/executor-0.0.20.tgz#d51d159696e839522dd49d936636af251670e425"
+  integrity sha512-GdvNc4vszmfeGvUqlcaH1FjBoguvMYzxAfT6tDd4/LgwymepHhinqLNA5otqwVLW+JETcDaK7xGENzFomuE6TA==
+  dependencies:
+    "@graphql-tools/utils" "^9.2.1"
+    "@graphql-typed-document-node/core" "3.2.0"
+    "@repeaterjs/repeater" "^3.0.4"
+    tslib "^2.4.0"
+    value-or-promise "^1.0.12"
+
 "@graphql-tools/git-loader@^7.0.5":
   version "7.1.0"
   resolved "https://registry.yarnpkg.com/@graphql-tools/git-loader/-/git-loader-7.1.0.tgz#6d4978752e058b69047bccca1d11c50b1e29b401"
@@ -4101,73 +4156,65 @@
     cross-fetch "3.1.4"
     tslib "~2.3.0"
 
-"@graphql-tools/graphql-file-loader@^7.0.1", "@graphql-tools/graphql-file-loader@^7.0.5":
-  version "7.1.0"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.1.0.tgz#6249074a7d268a30c81e923ee2bb991ec9a4c7b7"
-  integrity sha512-VWGetkBuyWrUxSpMnbpzZs2yHWBFeo9nTYjc8+o+xyJKpG/CRfvQrhBRNRFfV/5C0j5/Z1FMfUgsroEAG5H3HQ==
+"@graphql-tools/graphql-file-loader@^7.0.5", "@graphql-tools/graphql-file-loader@^7.3.7":
+  version "7.5.17"
+  resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.5.17.tgz#7c281617ea3ab4db4d42a2bdb49850f2b937f0f9"
+  integrity sha512-hVwwxPf41zOYgm4gdaZILCYnKB9Zap7Ys9OhY1hbwuAuC4MMNY9GpUjoTU3CQc3zUiPoYStyRtUGkHSJZ3HxBw==
   dependencies:
-    "@graphql-tools/import" "^6.4.0"
-    "@graphql-tools/utils" "^8.2.0"
+    "@graphql-tools/import" "6.7.18"
+    "@graphql-tools/utils" "^9.2.1"
     globby "^11.0.3"
-    tslib "~2.3.0"
+    tslib "^2.4.0"
     unixify "^1.0.0"
 
-"@graphql-tools/graphql-tag-pluck@^7.1.0":
-  version "7.1.1"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.1.1.tgz#970da5190cc424bdce3aae49f94710303f863e81"
-  integrity sha512-p+FhiiNJi02o4Y/hnT4SSRZnDvv/UcjnZJII3F4ljlteluCAwP+hPgAmbKVwOaaGfsOmMPmiAeeTWt8i23auyg==
+"@graphql-tools/graphql-tag-pluck@7.5.2", "@graphql-tools/graphql-tag-pluck@^7.1.0", "@graphql-tools/graphql-tag-pluck@^7.3.6":
+  version "7.5.2"
+  resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.5.2.tgz#502f1e066e19d832ebdeba5f571d7636dc27572d"
+  integrity sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==
   dependencies:
-    "@babel/parser" "7.15.6"
-    "@babel/traverse" "7.15.4"
-    "@babel/types" "7.15.6"
-    "@graphql-tools/utils" "^8.2.0"
-    tslib "~2.3.0"
+    "@babel/parser" "^7.16.8"
+    "@babel/plugin-syntax-import-assertions" "^7.20.0"
+    "@babel/traverse" "^7.16.8"
+    "@babel/types" "^7.16.8"
+    "@graphql-tools/utils" "^9.2.1"
+    tslib "^2.4.0"
 
-"@graphql-tools/import@^6.4.0":
-  version "6.6.1"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/import/-/import-6.6.1.tgz#2a7e1ceda10103ffeb8652a48ddc47150b035485"
-  integrity sha512-i9WA6k+erJMci822o9w9DoX+uncVBK60LGGYW8mdbhX0l7wEubUpA000thJ1aarCusYh0u+ZT9qX0HyVPXu25Q==
+"@graphql-tools/import@6.7.18":
+  version "6.7.18"
+  resolved "https://registry.yarnpkg.com/@graphql-tools/import/-/import-6.7.18.tgz#ad092d8a4546bb6ffc3e871e499eec7ac368680b"
+  integrity sha512-XQDdyZTp+FYmT7as3xRWH/x8dx0QZA2WZqfMF5EWb36a0PiH7WwlRQYIdyYXj8YCLpiWkeBXgBRHmMnwEYR8iQ==
   dependencies:
-    "@graphql-tools/utils" "8.5.3"
+    "@graphql-tools/utils" "^9.2.1"
     resolve-from "5.0.0"
-    tslib "~2.3.0"
+    tslib "^2.4.0"
 
-"@graphql-tools/json-file-loader@^7.0.1", "@graphql-tools/json-file-loader@^7.1.2":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/json-file-loader/-/json-file-loader-7.2.0.tgz#0d5cdc372a5d925a470c7b2269f26dd659eef841"
-  integrity sha512-YMGjYtjYoalmGHUynypSqxm99fSBOXWqoDeDVYTHAZy970yo61yTi72owEtg7dwB4fQndL2wCoh6ZDS5ruiDDg==
+"@graphql-tools/json-file-loader@^7.1.2", "@graphql-tools/json-file-loader@^7.3.7":
+  version "7.4.18"
+  resolved "https://registry.yarnpkg.com/@graphql-tools/json-file-loader/-/json-file-loader-7.4.18.tgz#d78ae40979bde51cfc59717757354afc9e35fba2"
+  integrity sha512-AJ1b6Y1wiVgkwsxT5dELXhIVUPs/u3VZ8/0/oOtpcoyO/vAeM5rOvvWegzicOOnQw8G45fgBRMkkRfeuwVt6+w==
   dependencies:
-    "@graphql-tools/utils" "^8.2.0"
+    "@graphql-tools/utils" "^9.2.1"
     globby "^11.0.3"
-    tslib "~2.3.0"
+    tslib "^2.4.0"
     unixify "^1.0.0"
 
-"@graphql-tools/load@^7.1.0", "@graphql-tools/load@^7.3.0":
-  version "7.3.2"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/load/-/load-7.3.2.tgz#0edd9c0b464111968bfca148457a4c97e23fc030"
-  integrity sha512-tB03MGOlgKkoP6YyzIl/saTYshuLWxQy2JebhYL6gy3XsWmSE7ae1WAL3p+G0pyfw66HaMu905omyulu1VkfXw==
+"@graphql-tools/load@^7.3.0", "@graphql-tools/load@^7.5.5":
+  version "7.8.14"
+  resolved "https://registry.yarnpkg.com/@graphql-tools/load/-/load-7.8.14.tgz#f2356f9a5f658a42e33934ae036e4b2cadf2d1e9"
+  integrity sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==
   dependencies:
-    "@graphql-tools/schema" "8.2.0"
-    "@graphql-tools/utils" "^8.2.3"
+    "@graphql-tools/schema" "^9.0.18"
+    "@graphql-tools/utils" "^9.2.1"
     p-limit "3.1.0"
-    tslib "~2.3.0"
-
-"@graphql-tools/merge@^6.2.16":
-  version "6.2.17"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-6.2.17.tgz#4dedf87d8435a5e1091d7cc8d4f371ed1e029f1f"
-  integrity sha512-G5YrOew39fZf16VIrc49q3c8dBqQDD0ax5LYPiNja00xsXDi0T9zsEWVt06ApjtSdSF6HDddlu5S12QjeN8Tow==
-  dependencies:
-    "@graphql-tools/schema" "^8.0.2"
-    "@graphql-tools/utils" "8.0.2"
-    tslib "~2.3.0"
+    tslib "^2.4.0"
 
-"@graphql-tools/merge@^8.1.0":
-  version "8.1.2"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-8.1.2.tgz#50f5763927c51de764d09c5bfd20261671976e24"
-  integrity sha512-kFLd4kKNJXYXnKIhM8q9zgGAtbLmsy3WmGdDxYq3YHBJUogucAxnivQYyRIseUq37KGmSAIWu3pBQ23TKGsGOw==
+"@graphql-tools/merge@^8.1.0", "@graphql-tools/merge@^8.2.6", "@graphql-tools/merge@^8.4.1":
+  version "8.4.2"
+  resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-8.4.2.tgz#95778bbe26b635e8d2f60ce9856b388f11fe8288"
+  integrity sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==
   dependencies:
-    "@graphql-tools/utils" "^8.2.2"
-    tslib "~2.3.0"
+    "@graphql-tools/utils" "^9.2.1"
+    tslib "^2.4.0"
 
 "@graphql-tools/optimize@^1.0.1":
   version "1.0.1"
@@ -4211,7 +4258,7 @@
     relay-compiler "11.0.2"
     tslib "~2.3.0"
 
-"@graphql-tools/schema@8.2.0", "@graphql-tools/schema@^8.0.2", "@graphql-tools/schema@^8.1.2", "@graphql-tools/schema@^8.2.0":
+"@graphql-tools/schema@^8.1.2", "@graphql-tools/schema@^8.2.0":
   version "8.2.0"
   resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-8.2.0.tgz#ae75cbb2df6cee9ed6d89fce56be467ab23758dc"
   integrity sha512-ufmI5mJQa8NJczzfkh0pUttKvspqDcT5LLakA3jUmOrrE4d4NVj6onZlazdTzF5sAepSNqanFnwhrxZpCAJMKg==
@@ -4221,41 +4268,34 @@
     tslib "~2.3.0"
     value-or-promise "1.0.10"
 
-"@graphql-tools/url-loader@^7.0.11", "@graphql-tools/url-loader@^7.0.3", "@graphql-tools/url-loader@^7.1.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/url-loader/-/url-loader-7.2.0.tgz#f70f77b9a3cfb8de0460a05a93590d16a68af09a"
-  integrity sha512-1HOyt89TlzINko/Sa39oNQCzvbIshAiz+ECaoJKkIfkQZzXWzRkDrU5nEIPGm/FsCHm519OiJeaLwPLbdqnrLw==
+"@graphql-tools/schema@^9.0.18", "@graphql-tools/schema@^9.0.19":
+  version "9.0.19"
+  resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-9.0.19.tgz#c4ad373b5e1b8a0cf365163435b7d236ebdd06e7"
+  integrity sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==
   dependencies:
-    "@ardatan/fetch-event-source" "2.0.2"
-    "@graphql-tools/delegate" "^8.2.0"
-    "@graphql-tools/utils" "^8.2.0"
-    "@graphql-tools/wrap" "^8.1.0"
-    "@n1ru4l/graphql-live-query" "0.8.1"
-    "@types/websocket" "1.0.4"
-    "@types/ws" "^7.4.7"
-    abort-controller "3.0.0"
-    cross-fetch "3.1.4"
-    extract-files "11.0.0"
-    form-data "4.0.0"
-    graphql-sse "^1.0.1"
-    graphql-ws "^5.4.1"
-    is-promise "4.0.0"
-    isomorphic-ws "4.0.1"
-    lodash "4.17.21"
-    meros "1.1.4"
-    subscriptions-transport-ws "^0.10.0"
-    sync-fetch "0.3.0"
-    tslib "~2.3.0"
-    valid-url "1.0.9"
-    value-or-promise "1.0.10"
-    ws "8.2.2"
-
-"@graphql-tools/utils@8.0.2":
-  version "8.0.2"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-8.0.2.tgz#795a8383cdfdc89855707d62491c576f439f3c51"
-  integrity sha512-gzkavMOgbhnwkHJYg32Adv6f+LxjbQmmbdD5Hty0+CWxvaiuJq+nU6tzb/7VSU4cwhbNLx/lGu2jbCPEW1McZQ==
-  dependencies:
-    tslib "~2.3.0"
+    "@graphql-tools/merge" "^8.4.1"
+    "@graphql-tools/utils" "^9.2.1"
+    tslib "^2.4.0"
+    value-or-promise "^1.0.12"
+
+"@graphql-tools/url-loader@^7.0.11", "@graphql-tools/url-loader@^7.1.0", "@graphql-tools/url-loader@^7.9.7":
+  version "7.17.18"
+  resolved "https://registry.yarnpkg.com/@graphql-tools/url-loader/-/url-loader-7.17.18.tgz#3e253594d23483e4c0dd3a4c3dd2ad5cd0141192"
+  integrity sha512-ear0CiyTj04jCVAxi7TvgbnGDIN2HgqzXzwsfcqiVg9cvjT40NcMlZ2P1lZDgqMkZ9oyLTV8Bw6j+SyG6A+xPw==
+  dependencies:
+    "@ardatan/sync-fetch" "^0.0.1"
+    "@graphql-tools/delegate" "^9.0.31"
+    "@graphql-tools/executor-graphql-ws" "^0.0.14"
+    "@graphql-tools/executor-http" "^0.1.7"
+    "@graphql-tools/executor-legacy-ws" "^0.0.11"
+    "@graphql-tools/utils" "^9.2.1"
+    "@graphql-tools/wrap" "^9.4.2"
+    "@types/ws" "^8.0.0"
+    "@whatwg-node/fetch" "^0.8.0"
+    isomorphic-ws "^5.0.0"
+    tslib "^2.4.0"
+    value-or-promise "^1.0.11"
+    ws "^8.12.0"
 
 "@graphql-tools/utils@8.2.3":
   version "8.2.3"
@@ -4264,21 +4304,22 @@
   dependencies:
     tslib "~2.3.0"
 
-"@graphql-tools/utils@8.5.3":
-  version "8.5.3"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-8.5.3.tgz#404062e62cae9453501197039687749c4885356e"
-  integrity sha512-HDNGWFVa8QQkoQB0H1lftvaO1X5xUaUDk1zr1qDe0xN1NL0E/CrQdJ5UKLqOvH4hkqVUPxQsyOoAZFkaH6rLHg==
+"@graphql-tools/utils@^8.1.1", "@graphql-tools/utils@^8.2.0", "@graphql-tools/utils@^8.3.0", "@graphql-tools/utils@^8.5.2":
+  version "8.13.1"
+  resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-8.13.1.tgz#b247607e400365c2cd87ff54654d4ad25a7ac491"
+  integrity sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==
   dependencies:
-    tslib "~2.3.0"
+    tslib "^2.4.0"
 
-"@graphql-tools/utils@8.6.9", "@graphql-tools/utils@^8.0.1", "@graphql-tools/utils@^8.1.1", "@graphql-tools/utils@^8.2.0", "@graphql-tools/utils@^8.2.2", "@graphql-tools/utils@^8.2.3", "@graphql-tools/utils@^8.3.0", "@graphql-tools/utils@^8.5.2":
-  version "8.6.9"
-  resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-8.6.9.tgz#fe1b81df29c9418b41b7a1ffe731710b93d3a1fe"
-  integrity sha512-Z1X4d4GCT81+8CSt6SgU4t1w1UAUsAIRb67mI90k/zAs+ArkB95iE3bWXuJCUmd1+r8DGGtmUNOArtd6wkt+OQ==
+"@graphql-tools/utils@^9.0.0", "@graphql-tools/utils@^9.2.1":
+  version "9.2.1"
+  resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-9.2.1.tgz#1b3df0ef166cfa3eae706e3518b17d5922721c57"
+  integrity sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==
   dependencies:
-    tslib "~2.3.0"
+    "@graphql-typed-document-node/core" "^3.1.1"
+    tslib "^2.4.0"
 
-"@graphql-tools/wrap@8.1.1", "@graphql-tools/wrap@^8.1.0":
+"@graphql-tools/wrap@8.1.1":
   version "8.1.1"
   resolved "https://registry.yarnpkg.com/@graphql-tools/wrap/-/wrap-8.1.1.tgz#7003033372d6ef984065028430429655614af899"
   integrity sha512-Z2ylFug2iHMbpcc2Bs/avNTKmhoJrUO6l0JrQbgiZZJWBaBz6yw+fyfL/kCLQluiU5/SXsvUxxPGBQ9tqb864g==
@@ -4289,10 +4330,21 @@
     tslib "~2.3.0"
     value-or-promise "1.0.10"
 
-"@graphql-typed-document-node/core@^3.1.0", "@graphql-typed-document-node/core@^3.1.1":
-  version "3.1.1"
-  resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.1.1.tgz#076d78ce99822258cf813ecc1e7fa460fa74d052"
-  integrity sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==
+"@graphql-tools/wrap@^9.4.2":
+  version "9.4.2"
+  resolved "https://registry.yarnpkg.com/@graphql-tools/wrap/-/wrap-9.4.2.tgz#30835587c4c73be1780908a7cb077d8013aa2703"
+  integrity sha512-DFcd9r51lmcEKn0JW43CWkkI2D6T9XI1juW/Yo86i04v43O9w2/k4/nx2XTJv4Yv+iXwUw7Ok81PGltwGJSDSA==
+  dependencies:
+    "@graphql-tools/delegate" "^9.0.31"
+    "@graphql-tools/schema" "^9.0.18"
+    "@graphql-tools/utils" "^9.2.1"
+    tslib "^2.4.0"
+    value-or-promise "^1.0.12"
+
+"@graphql-typed-document-node/core@3.2.0", "@graphql-typed-document-node/core@^3.1.0", "@graphql-typed-document-node/core@^3.1.1":
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.2.0.tgz#5f3d96ec6b2354ad6d8a28bf216a1d97b5426861"
+  integrity sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==
 
 "@headlessui/vue@1.4.0":
   version "1.4.0"
@@ -4332,11 +4384,6 @@
   resolved "https://registry.yarnpkg.com/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz#98c23c950a3d9b6c8f0daed06da6c3af06981340"
   integrity sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==
 
-"@iarna/toml@^2.2.5":
-  version "2.2.5"
-  resolved "https://registry.yarnpkg.com/@iarna/toml/-/toml-2.2.5.tgz#b32366c89b43c6f8cefbdefac778b9c828e3ba8c"
-  integrity sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==
-
 "@iconify-json/logos@1.1.42":
   version "1.1.42"
   resolved "https://registry.yarnpkg.com/@iconify-json/logos/-/logos-1.1.42.tgz#85f62457ea54b727752b1fed8071847d17f28da1"
@@ -5043,11 +5090,6 @@
     lodash "^4.17.15"
     tmp-promise "^3.0.2"
 
-"@n1ru4l/graphql-live-query@0.8.1":
-  version "0.8.1"
-  resolved "https://registry.yarnpkg.com/@n1ru4l/graphql-live-query/-/graphql-live-query-0.8.1.tgz#2d6ca6157dafdc5d122a1aeb623b43e939c4b238"
-  integrity sha512-x5SLY+L9/5s07OJprISXx4csNBPF74UZeTI01ZPSaxOtRz2Gljk652kSPf6OjMLtx5uATr35O0M3G0LYhHBLtg==
-
 "@napi-rs/wasm-runtime@0.2.4":
   version "0.2.4"
   resolved "https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.4.tgz#d27788176f250d86e498081e3c5ff48a17606918"
@@ -5929,6 +5971,33 @@
   resolved "https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.12.0.tgz#19c959bdb900986e74939d4227e757aa16936b91"
   integrity sha512-hO+bdeGOlJwqowUBoZF5LyP3ORUFOP1G0GRv8N45W/cztXbT2ZEXaAzfokRS9Xc9FWmYrDj32mF6SzH6wuoIyA==
 
+"@peculiar/asn1-schema@^2.3.13", "@peculiar/asn1-schema@^2.3.8":
+  version "2.3.15"
+  resolved "https://registry.yarnpkg.com/@peculiar/asn1-schema/-/asn1-schema-2.3.15.tgz#e926bfdeed51945a06f38be703499e7d8341a5d3"
+  integrity sha512-QPeD8UA8axQREpgR5UTAfu2mqQmm97oUqahDtNdBcfj3qAnoXzFdQW+aNf/tD2WVXF8Fhmftxoj0eMIT++gX2w==
+  dependencies:
+    asn1js "^3.0.5"
+    pvtsutils "^1.3.6"
+    tslib "^2.8.1"
+
+"@peculiar/json-schema@^1.1.12":
+  version "1.1.12"
+  resolved "https://registry.yarnpkg.com/@peculiar/json-schema/-/json-schema-1.1.12.tgz#fe61e85259e3b5ba5ad566cb62ca75b3d3cd5339"
+  integrity sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==
+  dependencies:
+    tslib "^2.0.0"
+
+"@peculiar/webcrypto@^1.4.0":
+  version "1.5.0"
+  resolved "https://registry.yarnpkg.com/@peculiar/webcrypto/-/webcrypto-1.5.0.tgz#9e57174c02c1291051c553600347e12b81469e10"
+  integrity sha512-BRs5XUAwiyCDQMsVA9IDvDa7UBR9gAvPHgugOeGng3YN6vJ9JYonyDc0lNczErgtCWtucjR5N7VtaonboD/ezg==
+  dependencies:
+    "@peculiar/asn1-schema" "^2.3.8"
+    "@peculiar/json-schema" "^1.1.12"
+    pvtsutils "^1.3.5"
+    tslib "^2.6.2"
+    webcrypto-core "^1.8.0"
+
 "@percy/cli-app@1.27.4":
   version "1.27.4"
   resolved "https://registry.yarnpkg.com/@percy/cli-app/-/cli-app-1.27.4.tgz#2b8364443bfd2ac59c7b4e98ccab6000828443ae"
@@ -6255,6 +6324,16 @@
   resolved "https://registry.npmjs.org/@remix-run/router/-/router-1.21.0.tgz#c65ae4262bdcfe415dbd4f64ec87676e4a56e2b5"
   integrity sha512-xfSkCAchbdG5PnbrKqFWwia4Bi61nH+wm8wLEqfHDyp7Y3dZzgqS2itV8i4gAq9pC2HsTpwyBC6Ds8VHZ96JlA==
 
+"@repeaterjs/repeater@3.0.4":
+  version "3.0.4"
+  resolved "https://registry.yarnpkg.com/@repeaterjs/repeater/-/repeater-3.0.4.tgz#a04d63f4d1bf5540a41b01a921c9a7fddc3bd1ca"
+  integrity sha512-AW8PKd6iX3vAZ0vA43nOUOnbq/X5ihgU+mSXXqunMkeQADGiqw/PY0JNeYtD5sr0PAy51YPgAPbDoeapv9r8WA==
+
+"@repeaterjs/repeater@^3.0.4":
+  version "3.0.6"
+  resolved "https://registry.yarnpkg.com/@repeaterjs/repeater/-/repeater-3.0.6.tgz#be23df0143ceec3c69f8b6c2517971a5578fdaa2"
+  integrity sha512-Javneu5lsuhwNCryN+pXH93VPQ8g0dBX7wItHFgYiwQmzE1sVdg5tWHiOgHywzL2W21XQopa7IwIEnNbmeUJYA==
+
 "@rollup/plugin-commonjs@^17.1.0":
   version "17.1.0"
   resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-17.1.0.tgz#757ec88737dffa8aa913eb392fade2e45aef2a2d"
@@ -8561,13 +8640,6 @@
     tapable "^2.2.0"
     webpack "^5"
 
-"@types/websocket@1.0.4":
-  version "1.0.4"
-  resolved "https://registry.yarnpkg.com/@types/websocket/-/websocket-1.0.4.tgz#1dc497280d8049a5450854dd698ee7e6ea9e60b8"
-  integrity sha512-qn1LkcFEKK8RPp459jkjzsfpbsx36BBt3oC3pITYtkoBw/aVX+EZFa5j3ThCRTNpLFvIMr5dSTD4RaMdilIOpA==
-  dependencies:
-    "@types/node" "*"
-
 "@types/which@^2.0.1":
   version "2.0.2"
   resolved "https://registry.npmjs.org/@types/which/-/which-2.0.2.tgz#54541d02d6b1daee5ec01ac0d1b37cecf37db1ae"
@@ -8578,17 +8650,10 @@
   resolved "https://registry.npmjs.org/@types/wrap-ansi/-/wrap-ansi-3.0.0.tgz#18b97a972f94f60a679fd5c796d96421b9abb9fd"
   integrity sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==
 
-"@types/ws@^7.4.7":
-  version "7.4.7"
-  resolved "https://registry.yarnpkg.com/@types/ws/-/ws-7.4.7.tgz#f7c390a36f7a0679aa69de2d501319f4f8d9b702"
-  integrity sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==
-  dependencies:
-    "@types/node" "*"
-
-"@types/ws@^8.5.10", "@types/ws@^8.5.3", "@types/ws@^8.5.5":
-  version "8.5.12"
-  resolved "https://registry.npmjs.org/@types/ws/-/ws-8.5.12.tgz#619475fe98f35ccca2a2f6c137702d85ec247b7e"
-  integrity sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ==
+"@types/ws@^8.0.0", "@types/ws@^8.5.10", "@types/ws@^8.5.3", "@types/ws@^8.5.5":
+  version "8.5.13"
+  resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.13.tgz#6414c280875e2691d0d1e080b05addbf5cb91e20"
+  integrity sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==
   dependencies:
     "@types/node" "*"
 
@@ -9614,6 +9679,33 @@
   resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-2.0.5.tgz#325db42395cd49fe6c14057f9a900e427df8810e"
   integrity sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==
 
+"@whatwg-node/events@^0.0.3":
+  version "0.0.3"
+  resolved "https://registry.yarnpkg.com/@whatwg-node/events/-/events-0.0.3.tgz#13a65dd4f5893f55280f766e29ae48074927acad"
+  integrity sha512-IqnKIDWfXBJkvy/k6tzskWTc2NK3LcqHlb+KHGCrjOCH4jfQckRX0NAiIcC/vIqQkzLYw2r2CTSwAxcrtcD6lA==
+
+"@whatwg-node/fetch@^0.8.0", "@whatwg-node/fetch@^0.8.1":
+  version "0.8.8"
+  resolved "https://registry.yarnpkg.com/@whatwg-node/fetch/-/fetch-0.8.8.tgz#48c6ad0c6b7951a73e812f09dd22d75e9fa18cae"
+  integrity sha512-CdcjGC2vdKhc13KKxgsc6/616BQ7ooDIgPeTuAiE8qfCnS0mGzcfCOoZXypQSz73nxI+GWc7ZReIAVhxoE1KCg==
+  dependencies:
+    "@peculiar/webcrypto" "^1.4.0"
+    "@whatwg-node/node-fetch" "^0.3.6"
+    busboy "^1.6.0"
+    urlpattern-polyfill "^8.0.0"
+    web-streams-polyfill "^3.2.1"
+
+"@whatwg-node/node-fetch@^0.3.6":
+  version "0.3.6"
+  resolved "https://registry.yarnpkg.com/@whatwg-node/node-fetch/-/node-fetch-0.3.6.tgz#e28816955f359916e2d830b68a64493124faa6d0"
+  integrity sha512-w9wKgDO4C95qnXZRwZTfCmLWqyRnooGjcIwG0wADWjw9/HN0p7dtvtgSvItZtUyNteEvgTrd8QojNEqV6DAGTA==
+  dependencies:
+    "@whatwg-node/events" "^0.0.3"
+    busboy "^1.6.0"
+    fast-querystring "^1.1.1"
+    fast-url-parser "^1.1.3"
+    tslib "^2.3.1"
+
 "@xmldom/xmldom@^0.8.8":
   version "0.8.10"
   resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz#a1337ca426aa61cef9fe15b5b28e340a72f6fa99"
@@ -9677,7 +9769,7 @@ abbrev@^2.0.0:
   resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-2.0.0.tgz#cf59829b8b4f03f89dda2771cb7f3653828c89bf"
   integrity sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==
 
-abort-controller@3.0.0, abort-controller@^3.0.0:
+abort-controller@^3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392"
   integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==
@@ -10483,6 +10575,15 @@ asn1@^0.2.6, asn1@~0.2.3:
   dependencies:
     safer-buffer "~2.1.0"
 
+asn1js@^3.0.5:
+  version "3.0.5"
+  resolved "https://registry.yarnpkg.com/asn1js/-/asn1js-3.0.5.tgz#5ea36820443dbefb51cc7f88a2ebb5b462114f38"
+  integrity sha512-FVnvrKJwpt9LP2lAMl8qZswRNm3T4q9CON+bxldk2iwk3FFpuwhx2FfinyitizWHsVYyaY+y5JzDR0rCMV5yTQ==
+  dependencies:
+    pvtsutils "^1.3.2"
+    pvutils "^1.1.3"
+    tslib "^2.4.0"
+
 assert-plus@1.0.0, assert-plus@^1.0.0:
   version "1.0.0"
   resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
@@ -10877,7 +10978,7 @@ bach@^1.0.0:
     async-settle "^1.0.0"
     now-and-later "^2.0.0"
 
-backo2@^1.0.2, backo2@~1.0.2:
+backo2@~1.0.2:
   version "1.0.2"
   resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947"
   integrity sha1-MasayLEpNjRj41s+u2n038+6eUc=
@@ -11563,6 +11664,13 @@ busboy@^0.2.11:
     dicer "0.2.5"
     readable-stream "1.1.x"
 
+busboy@^1.6.0:
+  version "1.6.0"
+  resolved "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz#966ea36a9502e43cdb9146962523b92f531f6893"
+  integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==
+  dependencies:
+    streamsearch "^1.1.0"
+
 byte-size@8.1.1:
   version "8.1.1"
   resolved "https://registry.yarnpkg.com/byte-size/-/byte-size-8.1.1.tgz#3424608c62d59de5bfda05d31e0313c6174842ae"
@@ -13275,23 +13383,15 @@ corser@^2.0.1:
   resolved "https://registry.yarnpkg.com/corser/-/corser-2.0.1.tgz#8eda252ecaab5840dcd975ceb90d9370c819ff87"
   integrity sha1-jtolLsqrWEDc2XXOuQ2TcMgZ/4c=
 
-cosmiconfig-toml-loader@1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/cosmiconfig-toml-loader/-/cosmiconfig-toml-loader-1.0.0.tgz#0681383651cceff918177debe9084c0d3769509b"
-  integrity sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==
-  dependencies:
-    "@iarna/toml" "^2.2.5"
-
-cosmiconfig@7.0.0:
-  version "7.0.0"
-  resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3"
-  integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==
+cosmiconfig@8.0.0:
+  version "8.0.0"
+  resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.0.0.tgz#e9feae014eab580f858f8a0288f38997a7bebe97"
+  integrity sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==
   dependencies:
-    "@types/parse-json" "^4.0.0"
     import-fresh "^3.2.1"
+    js-yaml "^4.1.0"
     parse-json "^5.0.0"
     path-type "^4.0.0"
-    yaml "^1.10.0"
 
 cosmiconfig@^7.0.0:
   version "7.0.1"
@@ -13767,10 +13867,10 @@ dataloader@2.0.0:
   resolved "https://registry.yarnpkg.com/dataloader/-/dataloader-2.0.0.tgz#41eaf123db115987e21ca93c005cd7753c55fe6f"
   integrity sha512-YzhyDAwA4TaQIhM5go+vCLmU0UikghC/t9DTQYZR2M/UvZ1MdOhPezSDZcjj9uqQJOMqjLcpWtyW2iNINdlatQ==
 
-dataloader@2.1.0, dataloader@^2.0.0:
-  version "2.1.0"
-  resolved "https://registry.yarnpkg.com/dataloader/-/dataloader-2.1.0.tgz#c69c538235e85e7ac6c6c444bae8ecabf5de9df7"
-  integrity sha512-qTcEYLen3r7ojZNgVUaRggOI+KM7jrKxXeSHhogh/TWxYMeONEMqY+hmkobiYQozsGIyg9OYVzO4ZIfoB4I0pQ==
+dataloader@^2.0.0, dataloader@^2.2.2:
+  version "2.2.3"
+  resolved "https://registry.yarnpkg.com/dataloader/-/dataloader-2.2.3.tgz#42d10b4913515f5b37c6acedcb4960d6ae1b1517"
+  integrity sha512-y2krtASINtPFS1rSDjacrFgn1dcUuoREVabwlOGOe4SdxenREqwjwjElAdwvbGM7kgZz9a3KVicWR7vcz8rnzA==
 
 date-fns@^1.27.2:
   version "1.30.1"
@@ -14616,6 +14716,11 @@ drange@^1.0.2:
   resolved "https://registry.yarnpkg.com/drange/-/drange-1.1.1.tgz#b2aecec2aab82fcef11dbbd7b9e32b83f8f6c0b8"
   integrity sha512-pYxfDYpued//QpnLIm4Avk7rsNtAtQkUES2cwAYSvD/wd2pKD71gN2Ebj3e7klzXwjocvE8c5vx/1fxwpqmSxA==
 
+dset@^3.1.2:
+  version "3.1.4"
+  resolved "https://registry.yarnpkg.com/dset/-/dset-3.1.4.tgz#f8eaf5f023f068a036d08cd07dc9ffb7d0065248"
+  integrity sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==
+
 dts-critic@latest:
   version "3.3.4"
   resolved "https://registry.yarnpkg.com/dts-critic/-/dts-critic-3.3.4.tgz#c15b7d4724190b8afaca7646f38271332f46dad7"
@@ -15943,11 +16048,6 @@ eventemitter2@6.4.7:
   resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-6.4.7.tgz#a7f6c4d7abf28a14c1ef3442f21cb306a054271d"
   integrity sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==
 
-eventemitter3@^3.1.0:
-  version "3.1.2"
-  resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.2.tgz#2d3d48f9c346698fce83a85d7d664e98535df6e7"
-  integrity sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==
-
 eventemitter3@^4.0.0, eventemitter3@^4.0.4:
   version "4.0.7"
   resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
@@ -16399,7 +16499,7 @@ extract-comments@^1.1.0:
     esprima-extract-comments "^1.1.0"
     parse-code-context "^1.0.0"
 
-extract-files@11.0.0:
+extract-files@^11.0.0:
   version "11.0.0"
   resolved "https://registry.yarnpkg.com/extract-files/-/extract-files-11.0.0.tgz#b72d428712f787eef1f5193aff8ab5351ca8469a"
   integrity sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==
@@ -16447,6 +16547,11 @@ fancy-log@^2.0.0:
   dependencies:
     color-support "^1.1.3"
 
+fast-decode-uri-component@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/fast-decode-uri-component/-/fast-decode-uri-component-1.0.1.tgz#46f8b6c22b30ff7a81357d4f59abfae938202543"
+  integrity sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==
+
 fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
   version "3.1.3"
   resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
@@ -16488,6 +16593,13 @@ fast-levenshtein@^2.0.6:
   resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
   integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
 
+fast-querystring@^1.1.1:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/fast-querystring/-/fast-querystring-1.1.2.tgz#a6d24937b4fc6f791b4ee31dcb6f53aeafb89f53"
+  integrity sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==
+  dependencies:
+    fast-decode-uri-component "^1.0.1"
+
 fast-safe-stringify@^2.0.7:
   version "2.0.7"
   resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz#124aa885899261f68aedb42a7c080de9da608743"
@@ -16498,6 +16610,13 @@ fast-uri@^3.0.1:
   resolved "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.3.tgz#892a1c91802d5d7860de728f18608a0573142241"
   integrity sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==
 
+fast-url-parser@^1.1.3:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/fast-url-parser/-/fast-url-parser-1.1.3.tgz#f4af3ea9f34d8a271cf58ad2b3759f431f0b318d"
+  integrity sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==
+  dependencies:
+    punycode "^1.3.2"
+
 fast-xml-parser@3.19.0:
   version "3.19.0"
   resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-3.19.0.tgz#cb637ec3f3999f51406dd8ff0e6fc4d83e520d01"
@@ -17048,15 +17167,6 @@ forever-agent@~0.6.1:
   resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
   integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=
 
-form-data@4.0.0:
-  version "4.0.0"
-  resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452"
-  integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==
-  dependencies:
-    asynckit "^0.4.0"
-    combined-stream "^1.0.8"
-    mime-types "^2.1.12"
-
 form-data@^2.3.1, form-data@^2.5.0:
   version "2.5.1"
   resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.5.1.tgz#f2cbec57b5e59e23716e128fe44d4e5dd23895f4"
@@ -18092,22 +18202,29 @@ graphemer@^1.4.0:
   resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6"
   integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==
 
-graphql-config@^4.0.1:
-  version "4.0.1"
-  resolved "https://registry.yarnpkg.com/graphql-config/-/graphql-config-4.0.1.tgz#4ce43cb54f3f39dde5f023d6f8f04064edc16e6e"
-  integrity sha512-JdXxFzBwjujJMGLHUZom9SrmP/M4gF57iTDa3fJVm3Q85+Xw2kj9jZIygaaSLpDKhaPnMQZqfJ5Hmc6afKxS9w==
-  dependencies:
-    "@endemolshinegroup/cosmiconfig-typescript-loader" "3.0.2"
-    "@graphql-tools/graphql-file-loader" "^7.0.1"
-    "@graphql-tools/json-file-loader" "^7.0.1"
-    "@graphql-tools/load" "^7.1.0"
-    "@graphql-tools/merge" "^6.2.16"
-    "@graphql-tools/url-loader" "^7.0.3"
-    "@graphql-tools/utils" "^8.0.1"
-    cosmiconfig "7.0.0"
-    cosmiconfig-toml-loader "1.0.0"
-    minimatch "3.0.4"
+graphql-config@^4.0.1, graphql-config@^4.4.0:
+  version "4.5.0"
+  resolved "https://registry.yarnpkg.com/graphql-config/-/graphql-config-4.5.0.tgz#257c2338950b8dce295a27f75c5f6c39f8f777b2"
+  integrity sha512-x6D0/cftpLUJ0Ch1e5sj1TZn6Wcxx4oMfmhaG9shM0DKajA9iR+j1z86GSTQ19fShbGvrSSvbIQsHku6aQ6BBw==
+  dependencies:
+    "@graphql-tools/graphql-file-loader" "^7.3.7"
+    "@graphql-tools/json-file-loader" "^7.3.7"
+    "@graphql-tools/load" "^7.5.5"
+    "@graphql-tools/merge" "^8.2.6"
+    "@graphql-tools/url-loader" "^7.9.7"
+    "@graphql-tools/utils" "^9.0.0"
+    cosmiconfig "8.0.0"
+    jiti "1.17.1"
+    minimatch "4.2.3"
     string-env-interpolation "1.0.1"
+    tslib "^2.4.0"
+
+graphql-depth-limit@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/graphql-depth-limit/-/graphql-depth-limit-1.1.0.tgz#59fe6b2acea0ab30ee7344f4c75df39cc18244e8"
+  integrity sha512-+3B2BaG8qQ8E18kzk9yiSdAa75i/hnnOwgSeAxVJctGQPvmeiLtqKOYF6HETCyRjiF7Xfsyal0HbLlxCQkgkrw==
+  dependencies:
+    arrify "^1.0.1"
 
 graphql-executor@0.0.23:
   version "0.0.23"
@@ -18140,11 +18257,6 @@ graphql-scalars@^1.10.0:
   dependencies:
     tslib "~2.2.0"
 
-graphql-sse@^1.0.1:
-  version "1.0.4"
-  resolved "https://registry.yarnpkg.com/graphql-sse/-/graphql-sse-1.0.4.tgz#051598b0e06c225327aac659f19fcc18bcaa0191"
-  integrity sha512-oB43ifRcEdElgep9jTP9qsj5cJ7Ny/1tAFyIl1W3A0hXRRg/P71tUHzMFBrRkEsJ9IA7MTp+RKSJfh52QR6PBQ==
-
 graphql-tag@^2.11.0, graphql-tag@^2.12.5:
   version "2.12.5"
   resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.12.5.tgz#5cff974a67b417747d05c8d9f5f3cb4495d0db8f"
@@ -18152,10 +18264,10 @@ graphql-tag@^2.11.0, graphql-tag@^2.12.5:
   dependencies:
     tslib "^2.1.0"
 
-graphql-ws@^5.4.1, graphql-ws@^5.5.5:
-  version "5.5.5"
-  resolved "https://registry.yarnpkg.com/graphql-ws/-/graphql-ws-5.5.5.tgz#f375486d3f196e2a2527b503644693ae3a8670a9"
-  integrity sha512-hvyIS71vs4Tu/yUYHPvGXsTgo0t3arU820+lT5VjZS2go0ewp2LqyCgxEN56CzOG7Iys52eRhHBiD1gGRdiQtw==
+graphql-ws@5.12.1, graphql-ws@^5.5.5:
+  version "5.12.1"
+  resolved "https://registry.yarnpkg.com/graphql-ws/-/graphql-ws-5.12.1.tgz#c62d5ac54dbd409cc6520b0b39de374b3d59d0dd"
+  integrity sha512-umt4f5NnMK46ChM2coO36PTFhHouBrK9stWWBczERguwYrGnPNxJ9dimU6IyOBfOkC6Izhkg4H8+F51W/8CYDg==
 
 graphql@>=14, graphql@^15.5.1:
   version "15.5.1"
@@ -19788,11 +19900,6 @@ is-port-reachable@4.0.0:
   resolved "https://registry.yarnpkg.com/is-port-reachable/-/is-port-reachable-4.0.0.tgz#dac044091ef15319c8ab2f34604d8794181f8c2d"
   integrity sha512-9UoipoxYmSk6Xy7QFgRv2HDyaysmgSG75TFQs6S+3pDM7ZhKTF/bskZV+0UlABHzKjNVhPjYCLfeZUEg1wXxig==
 
-is-promise@4.0.0:
-  version "4.0.0"
-  resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-4.0.0.tgz#42ff9f84206c1991d26debf520dd5c01042dd2f3"
-  integrity sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==
-
 is-promise@^2.1.0:
   version "2.2.2"
   resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1"
@@ -20091,10 +20198,10 @@ isomorphic-fetch@^3.0.0:
     node-fetch "^2.6.1"
     whatwg-fetch "^3.4.1"
 
-isomorphic-ws@4.0.1:
-  version "4.0.1"
-  resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc"
-  integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==
+isomorphic-ws@5.0.0, isomorphic-ws@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz#e5529148912ecb9b451b46ed44d53dae1ce04bbf"
+  integrity sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==
 
 isstream@~0.1.2:
   version "0.1.2"
@@ -20128,7 +20235,7 @@ isurl@^1.0.0-alpha5:
     has-to-string-tag-x "^1.2.0"
     is-object "^1.0.1"
 
-iterall@^1.2.1, iterall@^1.3.0:
+iterall@^1.3.0:
   version "1.3.0"
   resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.3.0.tgz#afcb08492e2915cbd8a0884eb93a8c94d0d72fea"
   integrity sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==
@@ -20237,6 +20344,11 @@ jimp@^0.2.21:
     tinycolor2 "^1.1.2"
     url-regex "^3.0.0"
 
+jiti@1.17.1:
+  version "1.17.1"
+  resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.17.1.tgz#264daa43ee89a03e8be28c3d712ccc4eb9f1e8ed"
+  integrity sha512-NZIITw8uZQFuzQimqjUxIrIcEdxYDFIe/0xYfIlVXTkiBjjyBEvgasj5bb0/cHtPRD/NziPbT312sFrkI5ALpw==
+
 jiti@^1.18.2, jiti@^1.21.6:
   version "1.21.7"
   resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.7.tgz#9dd81043424a3d28458b193d965f0d18a2300ba9"
@@ -20343,6 +20455,11 @@ jsesc@2.5.2, jsesc@^2.5.1:
   resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
   integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
 
+jsesc@^3.0.2:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.1.0.tgz#74d335a234f67ed19907fdadfac7ccf9d409825d"
+  integrity sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==
+
 jsesc@~0.5.0:
   version "0.5.0"
   resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
@@ -21414,7 +21531,7 @@ lodash.escaperegexp@^4.1.2:
   resolved "https://registry.yarnpkg.com/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz#64762c48618082518ac3df4ccf5d5886dae20347"
   integrity sha1-ZHYsSGGAglGKw99Mz11YhtriA0c=
 
-lodash.get@^4, lodash.get@^4.0.0, lodash.get@^4.4.2:
+lodash.get@^4.0.0, lodash.get@^4.4.2:
   version "4.4.2"
   resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99"
   integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=
@@ -21478,6 +21595,11 @@ lodash.keys@^3.0.0:
     lodash.isarguments "^3.0.0"
     lodash.isarray "^3.0.0"
 
+lodash.lowercase@^4.3.0:
+  version "4.3.0"
+  resolved "https://registry.yarnpkg.com/lodash.lowercase/-/lodash.lowercase-4.3.0.tgz#46515aced4acb0b7093133333af068e4c3b14e9d"
+  integrity sha512-UcvP1IZYyDKyEL64mmrwoA1AbFu5ahojhTtkOUr1K9dbuxzS9ev8i4TxMMGCqRC9TE8uDaSoufNAXxRPNTseVA==
+
 lodash.merge@4.6.2, lodash.merge@^4.6.2:
   version "4.6.2"
   resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
@@ -21790,7 +21912,7 @@ make-dir@^3.0.0, make-dir@^3.0.2:
   dependencies:
     semver "^6.0.0"
 
-make-error@^1, make-error@^1.1.1:
+make-error@^1.1.1:
   version "1.3.6"
   resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2"
   integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==
@@ -22103,10 +22225,10 @@ merge@^1.2.0:
   resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145"
   integrity sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==
 
-meros@1.1.4:
-  version "1.1.4"
-  resolved "https://registry.yarnpkg.com/meros/-/meros-1.1.4.tgz#c17994d3133db8b23807f62bec7f0cb276cfd948"
-  integrity sha512-E9ZXfK9iQfG9s73ars9qvvvbSIkJZF5yOo9j4tcwM5tN8mUKfj/EKN5PzOr3ZH0y5wL7dLAHw3RVEfpQV9Q7VQ==
+meros@^1.2.1:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/meros/-/meros-1.3.0.tgz#c617d2092739d55286bf618129280f362e6242f2"
+  integrity sha512-2BNGOimxEz5hmjUG2FwoxCt5HN7BXdaWyFqEwxPTrJzVdABtrL4TiHTcsWSFAxPQ/tOnEaQEJh3qWq71QRMY+w==
 
 method-override@3.0.0:
   version "3.0.0"
@@ -22315,6 +22437,13 @@ minimatch@4.2.1:
   dependencies:
     brace-expansion "^1.1.7"
 
+minimatch@4.2.3:
+  version "4.2.3"
+  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-4.2.3.tgz#b4dcece1d674dee104bb0fb833ebb85a78cbbca6"
+  integrity sha512-lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng==
+  dependencies:
+    brace-expansion "^1.1.7"
+
 minimatch@9.0.1:
   version "9.0.1"
   resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.1.tgz#8a555f541cf976c622daf078bb28f29fb927c253"
@@ -26106,10 +26235,10 @@ punycode.js@^2.3.1:
   resolved "https://registry.yarnpkg.com/punycode.js/-/punycode.js-2.3.1.tgz#6b53e56ad75588234e79f4affa90972c7dd8cdb7"
   integrity sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==
 
-punycode@^1.2.4, punycode@^1.4.1:
+punycode@^1.2.4, punycode@^1.3.2, punycode@^1.4.1:
   version "1.4.1"
   resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
-  integrity sha1-wNWmOycYgArY4esPpSachN1BhF4=
+  integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==
 
 punycode@^2.1.0, punycode@^2.1.1, punycode@^2.3.0:
   version "2.3.0"
@@ -26135,6 +26264,18 @@ puppeteer-core@^21.2.1:
     devtools-protocol "0.0.1159816"
     ws "8.14.1"
 
+pvtsutils@^1.3.2, pvtsutils@^1.3.5, pvtsutils@^1.3.6:
+  version "1.3.6"
+  resolved "https://registry.yarnpkg.com/pvtsutils/-/pvtsutils-1.3.6.tgz#ec46e34db7422b9e4fdc5490578c1883657d6001"
+  integrity sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg==
+  dependencies:
+    tslib "^2.8.1"
+
+pvutils@^1.1.3:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/pvutils/-/pvutils-1.1.3.tgz#f35fc1d27e7cd3dfbd39c0826d173e806a03f5a3"
+  integrity sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==
+
 q@^1.5.1:
   version "1.5.1"
   resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
@@ -28865,7 +29006,7 @@ source-map-resolve@^0.5.0:
     source-map-url "^0.4.0"
     urix "^0.1.0"
 
-source-map-support@^0.5.16, source-map-support@^0.5.17, source-map-support@^0.5.19, source-map-support@~0.5.12, source-map-support@~0.5.20:
+source-map-support@^0.5.16, source-map-support@^0.5.19, source-map-support@~0.5.12, source-map-support@~0.5.20:
   version "0.5.21"
   resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
   integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
@@ -29292,6 +29433,11 @@ streamsearch@0.1.2:
   resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-0.1.2.tgz#808b9d0e56fc273d809ba57338e929919a1a9f1a"
   integrity sha1-gIudDlb8Jz2Am6VzOOkpkZoanxo=
 
+streamsearch@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764"
+  integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==
+
 streamx@^2.12.5, streamx@^2.15.0, streamx@^2.20.0:
   version "2.20.0"
   resolved "https://registry.npmjs.org/streamx/-/streamx-2.20.0.tgz#5f3608483499a9346852122b26042f964ceec931"
@@ -29628,17 +29774,6 @@ strtok3@^6.2.4:
     "@tokenizer/token" "^0.3.0"
     peek-readable "^4.1.0"
 
-subscriptions-transport-ws@^0.10.0:
-  version "0.10.0"
-  resolved "https://registry.yarnpkg.com/subscriptions-transport-ws/-/subscriptions-transport-ws-0.10.0.tgz#91fce775b31935e4ca995895a40942268877d23f"
-  integrity sha512-k28LhLn3abJ1mowFW+LP4QGggE0e3hrk55zXbMHyAeZkCUYtC0owepiwqMD3zX8DglQVaxnhE760pESrNSEzpg==
-  dependencies:
-    backo2 "^1.0.2"
-    eventemitter3 "^3.1.0"
-    iterall "^1.2.1"
-    symbol-observable "^1.0.4"
-    ws "^5.2.0 || ^6.0.0 || ^7.0.0"
-
 sucrase@^3.35.0:
   version "3.35.0"
   resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.35.0.tgz#57f17a3d7e19b36d8995f06679d121be914ae263"
@@ -29842,7 +29977,7 @@ symbol-observable@4.0.0:
   resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-4.0.0.tgz#5b425f192279e87f2f9b937ac8540d1984b39205"
   integrity sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==
 
-symbol-observable@^1.0.4, symbol-observable@^1.1.0:
+symbol-observable@^1.1.0:
   version "1.2.0"
   resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804"
   integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==
@@ -30636,18 +30771,6 @@ ts-node@^10.9.2:
     v8-compile-cache-lib "^3.0.1"
     yn "3.1.1"
 
-ts-node@^9:
-  version "9.1.1"
-  resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-9.1.1.tgz#51a9a450a3e959401bda5f004a72d54b936d376d"
-  integrity sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==
-  dependencies:
-    arg "^4.1.0"
-    create-require "^1.1.0"
-    diff "^4.0.1"
-    make-error "^1.1.1"
-    source-map-support "^0.5.17"
-    yn "3.1.1"
-
 "tsconfig-aliased-for-wbip@npm:tsconfig@^7.0.0":
   version "7.0.0"
   resolved "https://registry.yarnpkg.com/tsconfig/-/tsconfig-7.0.0.tgz#84538875a4dc216e5c4a5432b3a4dec3d54e91b7"
@@ -30710,10 +30833,10 @@ tslib@^1.0.0, tslib@^1.10.0, tslib@^1.11.1, tslib@^1.13.0, tslib@^1.8.0, tslib@^
   resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
   integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
 
-tslib@^2, tslib@^2.0.0, tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.5.0:
-  version "2.6.2"
-  resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae"
-  integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
+tslib@^2.0.0, tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.4.1, tslib@^2.5.0, tslib@^2.6.2, tslib@^2.7.0, tslib@^2.8.1:
+  version "2.8.1"
+  resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f"
+  integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==
 
 tslib@~2.0.1:
   version "2.0.3"
@@ -31465,6 +31588,11 @@ url@0.11.1, url@^0.11.0, url@^0.11.1:
     punycode "^1.4.1"
     qs "^6.11.0"
 
+urlpattern-polyfill@^8.0.0:
+  version "8.0.2"
+  resolved "https://registry.yarnpkg.com/urlpattern-polyfill/-/urlpattern-polyfill-8.0.2.tgz#99f096e35eff8bf4b5a2aa7d58a1523d6ebc7ce5"
+  integrity sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==
+
 use-callback-ref@^1.2.1, use-callback-ref@^1.2.3:
   version "1.2.5"
   resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.2.5.tgz#6115ed242cfbaed5915499c0a9842ca2912f38a5"
@@ -31594,7 +31722,7 @@ v8flags@^3.2.0:
   dependencies:
     homedir-polyfill "^1.0.1"
 
-valid-url@1.0.9, valid-url@^1.0.9:
+valid-url@^1.0.9:
   version "1.0.9"
   resolved "https://registry.yarnpkg.com/valid-url/-/valid-url-1.0.9.tgz#1c14479b40f1397a75782f115e4086447433a200"
   integrity sha1-HBRHm0DxOXp1eC8RXkCGRHQzogA=
@@ -31644,10 +31772,10 @@ value-or-promise@1.0.10:
   resolved "https://registry.yarnpkg.com/value-or-promise/-/value-or-promise-1.0.10.tgz#5bf041f1e9a8e7043911875547636768a836e446"
   integrity sha512-1OwTzvcfXkAfabk60UVr5NdjtjJ0Fg0T5+B1bhxtrOEwSH2fe8y4DnLgoksfCyd8yZCOQQHB0qLMQnwgCjbXLQ==
 
-value-or-promise@1.0.11:
-  version "1.0.11"
-  resolved "https://registry.yarnpkg.com/value-or-promise/-/value-or-promise-1.0.11.tgz#3e90299af31dd014fe843fe309cefa7c1d94b140"
-  integrity sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==
+value-or-promise@^1.0.11, value-or-promise@^1.0.12:
+  version "1.0.12"
+  resolved "https://registry.yarnpkg.com/value-or-promise/-/value-or-promise-1.0.12.tgz#0e5abfeec70148c78460a849f6b003ea7986f15c"
+  integrity sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==
 
 vanilla-text-mask@5.1.1:
   version "5.1.1"
@@ -32076,11 +32204,22 @@ wcwidth@^1.0.0, wcwidth@^1.0.1:
   dependencies:
     defaults "^1.0.3"
 
-web-streams-polyfill@^3.0.3:
+web-streams-polyfill@^3.0.3, web-streams-polyfill@^3.2.1:
   version "3.3.3"
-  resolved "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz#2073b91a2fdb1fbfbd401e7de0ac9f8214cecb4b"
+  resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz#2073b91a2fdb1fbfbd401e7de0ac9f8214cecb4b"
   integrity sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==
 
+webcrypto-core@^1.8.0:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/webcrypto-core/-/webcrypto-core-1.8.1.tgz#09d5bd8a9c48e9fbcaf412e06b1ff1a57514ce86"
+  integrity sha512-P+x1MvlNCXlKbLSOY4cYrdreqPG5hbzkmawbcXLKN/mf6DZW0SdNNkZ+sjwsqVkI4A4Ko2sPZmkZtCKY58w83A==
+  dependencies:
+    "@peculiar/asn1-schema" "^2.3.13"
+    "@peculiar/json-schema" "^1.1.12"
+    asn1js "^3.0.5"
+    pvtsutils "^1.3.5"
+    tslib "^2.7.0"
+
 webdriver@9.0.0:
   version "9.0.0"
   resolved "https://registry.npmjs.org/webdriver/-/webdriver-9.0.0.tgz#9e07c1c5f963c09131c9ab3dbc5551cacb03d905"
@@ -32717,24 +32856,24 @@ ws@5.2.4:
   dependencies:
     async-limiter "~1.0.0"
 
+ws@8.13.0:
+  version "8.13.0"
+  resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0"
+  integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==
+
 ws@8.14.1:
   version "8.14.1"
   resolved "https://registry.yarnpkg.com/ws/-/ws-8.14.1.tgz#4b9586b4f70f9e6534c7bb1d3dc0baa8b8cf01e0"
   integrity sha512-4OOseMUq8AzRBI/7SLMUwO+FEDnguetSk7KMb1sHwvF2w2Wv5Hoj0nlifx8vtGsftE/jWHojPy8sMMzYLJ2G/A==
 
-ws@8.2.2:
-  version "8.2.2"
-  resolved "https://registry.yarnpkg.com/ws/-/ws-8.2.2.tgz#ca684330c6dd6076a737250ed81ac1606cb0a63e"
-  integrity sha512-Q6B6H2oc8QY3llc3cB8kVmQ6pnJWVQbP7Q5algTcIxx7YEpc0oU4NBVHlztA7Ekzfhw2r0rPducMUiCGWKQRzw==
-
-"ws@^5.2.0 || ^6.0.0 || ^7.0.0", ws@^7.2.0:
+ws@^7.2.0:
   version "7.5.7"
   resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.7.tgz#9e0ac77ee50af70d58326ecff7e85eb3fa375e67"
   integrity sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==
 
-ws@^8.0.0, ws@^8.13.0, ws@^8.18.0, ws@^8.5.0, ws@^8.8.0:
+ws@^8.0.0, ws@^8.12.0, ws@^8.13.0, ws@^8.18.0, ws@^8.5.0, ws@^8.8.0:
   version "8.18.0"
-  resolved "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc"
+  resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc"
   integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==
 
 ws@~7.4.2:

From 77b113ef4796dbccefee4cee9fc6049f4ec6a2d5 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 13:57:17 -0500
Subject: [PATCH 050/127] eslint for packages/graphql

---
 packages/graphql/.eslintignore                |  1 -
 packages/graphql/eslint.config.ts             | 20 +++++++++++++++++++
 packages/graphql/package.json                 |  2 +-
 .../graphql/src/plugins/nexusNodePlugin.ts    |  4 ++--
 .../schemaTypes/objectTypes/gql-Migration.ts  |  3 +--
 .../schemaTypes/objectTypes/gql-Mutation.ts   |  2 +-
 .../src/schemaTypes/scalarTypes/index.ts      |  1 -
 packages/graphql/test/stubCloudTypes.ts       |  5 ++---
 8 files changed, 27 insertions(+), 11 deletions(-)
 delete mode 100644 packages/graphql/.eslintignore
 create mode 100644 packages/graphql/eslint.config.ts

diff --git a/packages/graphql/.eslintignore b/packages/graphql/.eslintignore
deleted file mode 100644
index d5857ea71fbd..000000000000
--- a/packages/graphql/.eslintignore
+++ /dev/null
@@ -1 +0,0 @@
-**/tsconfig.json
diff --git a/packages/graphql/eslint.config.ts b/packages/graphql/eslint.config.ts
new file mode 100644
index 000000000000..b54ab7a1a1a9
--- /dev/null
+++ b/packages/graphql/eslint.config.ts
@@ -0,0 +1,20 @@
+import { baseConfig } from '../../eslint.config'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['test/.mocharc.js'],
+  },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts', 'index.js', 'scripts/nexus-build.ts', 'test/stubCloudTypes.ts'],
+        },
+      },
+      globals: {
+        process: 'readonly',
+      },
+    },
+  },
+]
diff --git a/packages/graphql/package.json b/packages/graphql/package.json
index 2b6ead2190f8..73545f2096ff 100644
--- a/packages/graphql/package.json
+++ b/packages/graphql/package.json
@@ -11,7 +11,7 @@
     "clean": "rimraf './{src,test}/**/*.js'",
     "clean-deps": "rimraf node_modules",
     "postinstall": "echo '@packages/graphql needs: yarn build'",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "nexus-build": "ts-node ./scripts/nexus-build.ts",
     "test-integration": "mocha -r @packages/ts/register test/integration/**/*.spec.ts --config ./test/.mocharc.js --exit",
     "test-unit": "mocha -r @packages/ts/register test/unit/**/*.spec.ts --config ./test/.mocharc.js --exit",
diff --git a/packages/graphql/src/plugins/nexusNodePlugin.ts b/packages/graphql/src/plugins/nexusNodePlugin.ts
index 634109ce7f0f..fb6ef2f68e6f 100644
--- a/packages/graphql/src/plugins/nexusNodePlugin.ts
+++ b/packages/graphql/src/plugins/nexusNodePlugin.ts
@@ -1,8 +1,8 @@
 import { FieldResolver, plugin } from 'nexus'
 
 // We know this is a valid node typename
-// eslint-disable-next-line @typescript-eslint/no-explicit-any
-type $ValidatedByGraphQL = any;
+
+type $ValidatedByGraphQL = any
 
 export const nodePlugin = plugin({
   name: 'NodePlugin',
diff --git a/packages/graphql/src/schemaTypes/objectTypes/gql-Migration.ts b/packages/graphql/src/schemaTypes/objectTypes/gql-Migration.ts
index 1ed9082a0b92..cefb75cee989 100644
--- a/packages/graphql/src/schemaTypes/objectTypes/gql-Migration.ts
+++ b/packages/graphql/src/schemaTypes/objectTypes/gql-Migration.ts
@@ -241,8 +241,7 @@ export const Migration = objectType({
       description: 'whether the integration folder is custom or not',
       resolve: (source, args, ctx) => {
         return ctx.coreData.migration.flags.hasCustomIntegrationFolder
-      }
-      ,
+      },
     })
 
     t.nonNull.boolean('hasCustomIntegrationTestFiles', {
diff --git a/packages/graphql/src/schemaTypes/objectTypes/gql-Mutation.ts b/packages/graphql/src/schemaTypes/objectTypes/gql-Mutation.ts
index 3bd84c9a21b2..e727036734ca 100644
--- a/packages/graphql/src/schemaTypes/objectTypes/gql-Mutation.ts
+++ b/packages/graphql/src/schemaTypes/objectTypes/gql-Mutation.ts
@@ -807,7 +807,7 @@ export const mutation = mutationType({
         })))),
       },
       resolve: (source, args, ctx) => {
-        ctx.coreData.cloudProject.testsForRunResults = args.testsBySpec.reduce<{[index: string]: string[]}>((acc, spec) => {
+        ctx.coreData.cloudProject.testsForRunResults = args.testsBySpec.reduce<{ [index: string]: string[] }>((acc, spec) => {
           acc[spec.specPath] = spec.tests
 
           return acc
diff --git a/packages/graphql/src/schemaTypes/scalarTypes/index.ts b/packages/graphql/src/schemaTypes/scalarTypes/index.ts
index 628d7a541e91..6133ac8770bc 100644
--- a/packages/graphql/src/schemaTypes/scalarTypes/index.ts
+++ b/packages/graphql/src/schemaTypes/scalarTypes/index.ts
@@ -1,4 +1,3 @@
-/* eslint-disable padding-line-between-statements */
 // created by autobarrel, do not modify directly
 
 export * from './gql-customScalars'
diff --git a/packages/graphql/test/stubCloudTypes.ts b/packages/graphql/test/stubCloudTypes.ts
index a286f89a3d8e..e9916b1a25e6 100644
--- a/packages/graphql/test/stubCloudTypes.ts
+++ b/packages/graphql/test/stubCloudTypes.ts
@@ -1,4 +1,3 @@
-/* eslint-disable no-console */
 /**
  * Takes all of the "Cloud" types and creates realistic mocks,
  * indexing the types in a way that we can access them
@@ -44,7 +43,7 @@ function getNodeIdx (type: CloudTypesWithId): number {
 }
 const btoa = typeof window !== 'undefined' ? window.btoa : (val: string) => Buffer.from(val).toString('base64')
 
-function testNodeId <T extends CloudTypesWithId> (type: T) {
+function testNodeId<T extends CloudTypesWithId> (type: T) {
   nodeIdx[type] = (nodeIdx[type] ?? 0) + 1
 
   return {
@@ -56,7 +55,7 @@ function testNodeId <T extends CloudTypesWithId> (type: T) {
 const nodeRegistry: Record<string, Node> = {}
 const projectsBySlug: Record<string, CloudProject> = {}
 
-function indexNode<T extends Node> (node: T & {__typename: CloudTypesWithId}): T {
+function indexNode<T extends Node> (node: T & { __typename: CloudTypesWithId }): T {
   nodeRegistry[node.id] = node
   if (node.__typename === 'CloudProject') {
     // @ts-expect-error

From 7b7fb97d067fda2729dbac6f6a9bc6c819e9a759 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 13:58:23 -0500
Subject: [PATCH 051/127] some cleanup

---
 packages/frontend-shared/eslint.config.ts |  1 -
 packages/graphql/.eslintrc.json           | 26 -----------------------
 2 files changed, 27 deletions(-)
 delete mode 100644 packages/graphql/.eslintrc.json

diff --git a/packages/frontend-shared/eslint.config.ts b/packages/frontend-shared/eslint.config.ts
index bd89a65f7888..ac8e0349ec35 100644
--- a/packages/frontend-shared/eslint.config.ts
+++ b/packages/frontend-shared/eslint.config.ts
@@ -1,6 +1,5 @@
 import { baseConfig } from '../../eslint.config'
 import globals from 'globals'
-import * as graphql from '@graphql-eslint/eslint-plugin'
 
 export default [
   ...baseConfig,
diff --git a/packages/graphql/.eslintrc.json b/packages/graphql/.eslintrc.json
deleted file mode 100644
index 7a733a318b46..000000000000
--- a/packages/graphql/.eslintrc.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-  "extends": [
-    "plugin:@cypress/dev/general",
-    "plugin:@cypress/dev/tests"
-  ],
-  "parser": "@typescript-eslint/parser",
-  "env": {
-    "cypress/globals": true
-  },
-  "plugins": [
-    "cypress"
-  ],
-  "overrides": [
-    {
-      "files": [
-        "./src/entities/**/*.ts"
-      ],
-      "rules": {
-        "no-useless-constructor": "off",
-        "@typescript-eslint/explicit-function-return-type": [
-          "error"
-        ]
-      }
-    }
-  ]
-}

From 1228a727870fe1a6c943be4230fbb2652199de82 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 14:01:28 -0500
Subject: [PATCH 052/127] packages/https-proxy

---
 packages/https-proxy/eslint.config.ts | 11 +++++++++++
 packages/https-proxy/package.json     |  2 +-
 packages/https-proxy/tsconfig.json    |  7 +++++++
 3 files changed, 19 insertions(+), 1 deletion(-)
 create mode 100644 packages/https-proxy/eslint.config.ts
 create mode 100644 packages/https-proxy/tsconfig.json

diff --git a/packages/https-proxy/eslint.config.ts b/packages/https-proxy/eslint.config.ts
new file mode 100644
index 000000000000..25b7522b74be
--- /dev/null
+++ b/packages/https-proxy/eslint.config.ts
@@ -0,0 +1,11 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+    languageOptions: {
+      globals: globals.node,
+    },
+  },
+]
diff --git a/packages/https-proxy/package.json b/packages/https-proxy/package.json
index 59d530a42460..e548ba0fbcab 100644
--- a/packages/https-proxy/package.json
+++ b/packages/https-proxy/package.json
@@ -6,7 +6,7 @@
   "scripts": {
     "clean-deps": "rimraf node_modules",
     "https": "node https.js",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "regenerate:certs": "cd ./test/helpers/certs && ./regenerate-certs.sh",
     "start": "node index.js",
     "test": "yarn test-unit",
diff --git a/packages/https-proxy/tsconfig.json b/packages/https-proxy/tsconfig.json
new file mode 100644
index 000000000000..be51bbc421d1
--- /dev/null
+++ b/packages/https-proxy/tsconfig.json
@@ -0,0 +1,7 @@
+{
+  "extends": "../ts/tsconfig.json",
+  "compilerOptions": {
+    "outDir": "dist",
+    "allowJs": true
+  },
+}
\ No newline at end of file

From b79bf019e846f5db6499297b961b9795aefe8013 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 14:03:33 -0500
Subject: [PATCH 053/127] packages/icons

---
 packages/icons/.eslintignore    |  5 -----
 packages/icons/eslint.config.ts | 14 ++++++++++++++
 packages/icons/index.d.ts       |  2 +-
 packages/icons/package.json     |  2 +-
 4 files changed, 16 insertions(+), 7 deletions(-)
 delete mode 100644 packages/icons/.eslintignore
 create mode 100644 packages/icons/eslint.config.ts

diff --git a/packages/icons/.eslintignore b/packages/icons/.eslintignore
deleted file mode 100644
index 79afe972da7d..000000000000
--- a/packages/icons/.eslintignore
+++ /dev/null
@@ -1,5 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
\ No newline at end of file
diff --git a/packages/icons/eslint.config.ts b/packages/icons/eslint.config.ts
new file mode 100644
index 000000000000..f4850b612602
--- /dev/null
+++ b/packages/icons/eslint.config.ts
@@ -0,0 +1,14 @@
+import { baseConfig } from '../../eslint.config'
+
+export default [
+  ...baseConfig,
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['index.js'],
+        },
+      },
+    },
+  },
+]
diff --git a/packages/icons/index.d.ts b/packages/icons/index.d.ts
index c28237ffe775..4d76a0d1c958 100644
--- a/packages/icons/index.d.ts
+++ b/packages/icons/index.d.ts
@@ -1 +1 @@
-export * from './dist/icons'
\ No newline at end of file
+export * from './dist/icons'
diff --git a/packages/icons/package.json b/packages/icons/package.json
index 516e82f2e27b..0f7602285c77 100644
--- a/packages/icons/package.json
+++ b/packages/icons/package.json
@@ -7,7 +7,7 @@
   "scripts": {
     "build": "ts-node ./scripts/build.ts && ts-node ./scripts/ico.ts",
     "check-ts": "tsc --noEmit",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "test": "yarn test-unit",
     "test-unit": "NODE_ENV=test mocha -r @packages/ts/register test/*.ts"
   },

From bcbb78b9bf1ef657026eac835ee8550f0569fc57 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 14:19:21 -0500
Subject: [PATCH 054/127] packages/launcher

---
 packages/launcher/.eslintignore       | 7 -------
 packages/launcher/eslint.config.ts    | 6 ++++++
 packages/launcher/package.json        | 2 +-
 packages/launcher/test/.eslintrc.json | 5 -----
 packages/launcher/test/tsconfig.json  | 7 +++++++
 5 files changed, 14 insertions(+), 13 deletions(-)
 delete mode 100644 packages/launcher/.eslintignore
 create mode 100644 packages/launcher/eslint.config.ts
 delete mode 100644 packages/launcher/test/.eslintrc.json
 create mode 100644 packages/launcher/test/tsconfig.json

diff --git a/packages/launcher/.eslintignore b/packages/launcher/.eslintignore
deleted file mode 100644
index 15730005ffd1..000000000000
--- a/packages/launcher/.eslintignore
+++ /dev/null
@@ -1,7 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
-**/__snapshots__
-index.js
\ No newline at end of file
diff --git a/packages/launcher/eslint.config.ts b/packages/launcher/eslint.config.ts
new file mode 100644
index 000000000000..2dc8214c787c
--- /dev/null
+++ b/packages/launcher/eslint.config.ts
@@ -0,0 +1,6 @@
+import { baseConfig } from '../../eslint.config'
+import path from 'path'
+
+export default [
+  ...baseConfig,
+]
diff --git a/packages/launcher/package.json b/packages/launcher/package.json
index 91e380ac9771..0e2f99375d12 100644
--- a/packages/launcher/package.json
+++ b/packages/launcher/package.json
@@ -8,7 +8,7 @@
     "clean": "rimraf --glob \"lib/*.js\" && rimraf --glob \"lib/**/*.js\" || true",
     "clean-deps": "rimraf node_modules",
     "clean-js": "yarn clean",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "size": "t=\"cypress-v0.0.0.tgz\"; yarn pack --filename \"${t}\"; wc -c \"cli/${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
     "test": "yarn test-unit",
     "test-unit": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json"
diff --git a/packages/launcher/test/.eslintrc.json b/packages/launcher/test/.eslintrc.json
deleted file mode 100644
index b5ed5206d083..000000000000
--- a/packages/launcher/test/.eslintrc.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ]
-}
diff --git a/packages/launcher/test/tsconfig.json b/packages/launcher/test/tsconfig.json
new file mode 100644
index 000000000000..b0f34765766c
--- /dev/null
+++ b/packages/launcher/test/tsconfig.json
@@ -0,0 +1,7 @@
+{
+  "extends": "../../ts/tsconfig.json",
+  "include": ["**/*.ts"],
+  "compilerOptions": {
+    "noEmit": true
+  }
+}
\ No newline at end of file

From 8529b726fd64ea22b13ead727929ad78ad7a1fb9 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 14:36:55 -0500
Subject: [PATCH 055/127] packages/launchpad

---
 packages/launchpad/.eslintignore              |  6 ------
 packages/launchpad/.eslintrc.json             |  3 ---
 .../cypress/e2e/scaffold-project.cy.ts        |  2 +-
 .../fixtures/test-project/cypress.config.ts   |  6 +++---
 packages/launchpad/eslint.config.ts           | 20 +++++++++++++++++++
 packages/launchpad/package.json               |  2 +-
 .../src/components/code/FileRow.cy.tsx        |  1 -
 .../launchpad/src/components/code/FileRow.vue |  2 +-
 .../src/migration/RenameSpecsAuto.vue         |  2 +-
 .../launchpad/src/migration/RenameSupport.vue |  8 ++++++--
 .../src/setup/CompareTestingTypes.vue         |  2 +-
 packages/launchpad/tsconfig.json              |  3 ++-
 packages/launchpad/vue-shims.d.ts             |  4 ++--
 13 files changed, 38 insertions(+), 23 deletions(-)
 delete mode 100644 packages/launchpad/.eslintignore
 delete mode 100644 packages/launchpad/.eslintrc.json
 create mode 100644 packages/launchpad/eslint.config.ts

diff --git a/packages/launchpad/.eslintignore b/packages/launchpad/.eslintignore
deleted file mode 100644
index ad1d543ef43b..000000000000
--- a/packages/launchpad/.eslintignore
+++ /dev/null
@@ -1,6 +0,0 @@
-**/dist
-**/dist-*
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
\ No newline at end of file
diff --git a/packages/launchpad/.eslintrc.json b/packages/launchpad/.eslintrc.json
deleted file mode 100644
index 6eeb52459992..000000000000
--- a/packages/launchpad/.eslintrc.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
-  "extends": "../frontend-shared/.eslintrc.json"
-}
diff --git a/packages/launchpad/cypress/e2e/scaffold-project.cy.ts b/packages/launchpad/cypress/e2e/scaffold-project.cy.ts
index 083f7edb6ace..6f4f774cfcfa 100644
--- a/packages/launchpad/cypress/e2e/scaffold-project.cy.ts
+++ b/packages/launchpad/cypress/e2e/scaffold-project.cy.ts
@@ -93,7 +93,7 @@ function scaffoldAndOpenCTProject (opts: {
   cy.contains('Continue').click()
 }
 
-function assertScaffoldedFilesAreCorrect (opts: { language: 'js' | 'ts', testingType: Cypress.TestingType, ctFramework?: string, customDirectory?: string}) {
+function assertScaffoldedFilesAreCorrect (opts: { language: 'js' | 'ts', testingType: Cypress.TestingType, ctFramework?: string, customDirectory?: string }) {
   cy.withCtx((ctx) => ctx.currentProject).then((currentProject) => {
     cy.task<SnapshotScaffoldTestResult>('snapshotCypressDirectory', {
       currentProject,
diff --git a/packages/launchpad/cypress/fixtures/test-project/cypress.config.ts b/packages/launchpad/cypress/fixtures/test-project/cypress.config.ts
index eaf31cec46f1..ec182fb99377 100644
--- a/packages/launchpad/cypress/fixtures/test-project/cypress.config.ts
+++ b/packages/launchpad/cypress/fixtures/test-project/cypress.config.ts
@@ -1,5 +1,5 @@
-import { defineConfig } from "cypress";
+import { defineConfig } from 'cypress'
 
 export default defineConfig({
-  "projectId": "test01"
-})
\ No newline at end of file
+  'projectId': 'test01',
+})
diff --git a/packages/launchpad/eslint.config.ts b/packages/launchpad/eslint.config.ts
new file mode 100644
index 000000000000..4f9baf8f4ba5
--- /dev/null
+++ b/packages/launchpad/eslint.config.ts
@@ -0,0 +1,20 @@
+import { baseConfig } from '../../eslint.config'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['src/generated/**/*'],
+  },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['cypress.config.ts', 'eslint.config.ts', 'vite.config.mjs', 'tailwind.config.cjs', 'postcss.config.js'],
+        },
+      },
+      globals: {
+        process: 'readonly',
+      },
+    },
+  },
+]
diff --git a/packages/launchpad/package.json b/packages/launchpad/package.json
index b50a7c4a29e2..af3d1b628652 100644
--- a/packages/launchpad/package.json
+++ b/packages/launchpad/package.json
@@ -13,7 +13,7 @@
     "cypress:run:ct": "yarn cypress:run-cypress-in-cypress node ../../scripts/cypress run --component --project .",
     "cypress:run:e2e": "yarn cypress:run-cypress-in-cypress node ../../scripts/cypress run --e2e --project .",
     "dev": "yarn cypress:run-cypress-in-cypress gulp dev --project .",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "start": "echo 'run yarn dev from the root' && exit 1",
     "test": "yarn cypress:run:ct && yarn types",
     "watch": "echo 'run yarn dev from the root' && exit 1"
diff --git a/packages/launchpad/src/components/code/FileRow.cy.tsx b/packages/launchpad/src/components/code/FileRow.cy.tsx
index 7899388b0ff0..5f8240f832b2 100644
--- a/packages/launchpad/src/components/code/FileRow.cy.tsx
+++ b/packages/launchpad/src/components/code/FileRow.cy.tsx
@@ -1,4 +1,3 @@
-/* eslint-disable no-irregular-whitespace */
 import FileRow from './FileRow.vue'
 import { faker } from '@faker-js/faker'
 import { defaultMessages } from '@cy/i18n'
diff --git a/packages/launchpad/src/components/code/FileRow.vue b/packages/launchpad/src/components/code/FileRow.vue
index c106bc1a1d47..2f102975fc1e 100644
--- a/packages/launchpad/src/components/code/FileRow.vue
+++ b/packages/launchpad/src/components/code/FileRow.vue
@@ -64,7 +64,7 @@
 import type { FunctionalComponent, SVGAttributes, ComputedRef } from 'vue'
 import type { BadgeRowStatus } from '@cy/components/Badge.vue'
 
-export type FileRowStatus = 'changes' | 'valid' | 'skipped' | 'error';
+export type FileRowStatus = 'changes' | 'valid' | 'skipped' | 'error'
 
 export type StatusInfo = {
   badgeLabel?: string
diff --git a/packages/launchpad/src/migration/RenameSpecsAuto.vue b/packages/launchpad/src/migration/RenameSpecsAuto.vue
index 4fc42b256f19..02b38b7302aa 100644
--- a/packages/launchpad/src/migration/RenameSpecsAuto.vue
+++ b/packages/launchpad/src/migration/RenameSpecsAuto.vue
@@ -149,7 +149,7 @@ function applySkipResult (val: PossibleOption) {
   emits('selectOption', selectOption.value)
 }
 
-type DeepWriteable<T> = { -readonly [P in keyof T]: DeepWriteable<T[P]> };
+type DeepWriteable<T> = { -readonly [P in keyof T]: DeepWriteable<T[P]> }
 
 type WriteableSpecFile = DeepWriteable<RenameSpecsAutoFragment['specFiles'][number]>
 
diff --git a/packages/launchpad/src/migration/RenameSupport.vue b/packages/launchpad/src/migration/RenameSupport.vue
index 3dd8a2222e4b..92475d498204 100644
--- a/packages/launchpad/src/migration/RenameSupport.vue
+++ b/packages/launchpad/src/migration/RenameSupport.vue
@@ -8,11 +8,15 @@
       {{ t('migration.renameSupport.changedSupportFile') }}
       <CodeTag
         class="text-red-500"
-      >cypress/support/index.js</CodeTag>
+      >
+        cypress/support/index.js
+      </CodeTag>
       <i-cy-arrow-right_x16 class="h-[16px] w-[16px] inline-block icon-dark-gray-300" />
       <CodeTag
         class="text-jade-500"
-      >cypress/support/e2e.js</CodeTag>
+      >
+        cypress/support/e2e.js
+      </CodeTag>
     </MigrationListItem>
   </MigrationList>
   <BeforeAfter>
diff --git a/packages/launchpad/src/setup/CompareTestingTypes.vue b/packages/launchpad/src/setup/CompareTestingTypes.vue
index d547af51d54c..25fbf025e0d3 100644
--- a/packages/launchpad/src/setup/CompareTestingTypes.vue
+++ b/packages/launchpad/src/setup/CompareTestingTypes.vue
@@ -25,7 +25,7 @@ import { useI18n } from '@cy/i18n'
 const { t } = useI18n()
 
 // these are code examples so should not trigger linter
-/* eslint-disable no-irregular-whitespace */
+
 const ctCode = `
 import BaseModal from './BaseModal'
 
diff --git a/packages/launchpad/tsconfig.json b/packages/launchpad/tsconfig.json
index 4fed7be13069..868140051881 100644
--- a/packages/launchpad/tsconfig.json
+++ b/packages/launchpad/tsconfig.json
@@ -2,7 +2,8 @@
   "extends": "../frontend-shared/tsconfig.json",
   "include": [
     "src/**/*.vue", 
-    "src/**/*.tsx", 
+    "src/**/*.tsx",
+    "src/**/*.ts",
     "*.d.ts", 
     "cypress/**/*.ts", 
     "cypress/**/*.tsx",
diff --git a/packages/launchpad/vue-shims.d.ts b/packages/launchpad/vue-shims.d.ts
index 6dbd5d0a2aa2..14e8db85d79f 100644
--- a/packages/launchpad/vue-shims.d.ts
+++ b/packages/launchpad/vue-shims.d.ts
@@ -5,13 +5,13 @@ declare module 'virtual:*' {
 }
 
 declare module 'virtual:icons/*' {
-  // eslint-disable-next-line no-duplicate-imports
+
   import type { FunctionalComponent, SVGAttributes } from 'vue'
   const component: FunctionalComponent<SVGAttributes>
   export default component
 }
 declare module '~icons/*' {
-  // eslint-disable-next-line no-duplicate-imports
+
   import type { FunctionalComponent, SVGAttributes } from 'vue'
   const component: FunctionalComponent<SVGAttributes>
   export default component

From 1c577fc6cab639eee4fbeba97f19168bcef79e0d Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 14:59:26 -0500
Subject: [PATCH 056/127] further restrict launchpad eslint to reduce impact of
 slow vue linting

---
 packages/launchpad/eslint.config.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/launchpad/eslint.config.ts b/packages/launchpad/eslint.config.ts
index 4f9baf8f4ba5..aa6a4be27a9a 100644
--- a/packages/launchpad/eslint.config.ts
+++ b/packages/launchpad/eslint.config.ts
@@ -3,7 +3,7 @@ import { baseConfig } from '../../eslint.config'
 export default [
   ...baseConfig,
   {
-    ignores: ['src/generated/**/*'],
+    ignores: ['src/generated/**/*', 'cypress/**/fixtures/**/*'],
   },
   {
     languageOptions: {

From cbb673bbd7f33eaccac48198981317b5afe97abf Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 15:01:49 -0500
Subject: [PATCH 057/127] packages/net-stubbing

---
 packages/net-stubbing/.eslintignore                     | 5 -----
 packages/net-stubbing/eslint.config.ts                  | 3 +++
 packages/net-stubbing/lib/external-types.ts             | 2 +-
 packages/net-stubbing/lib/server/intercepted-request.ts | 1 +
 packages/net-stubbing/lib/server/middleware/request.ts  | 2 +-
 packages/net-stubbing/package.json                      | 2 +-
 packages/net-stubbing/test/.eslintrc.json               | 5 -----
 packages/net-stubbing/test/tsconfig.json                | 7 +++++++
 8 files changed, 14 insertions(+), 13 deletions(-)
 delete mode 100644 packages/net-stubbing/.eslintignore
 create mode 100644 packages/net-stubbing/eslint.config.ts
 delete mode 100644 packages/net-stubbing/test/.eslintrc.json
 create mode 100644 packages/net-stubbing/test/tsconfig.json

diff --git a/packages/net-stubbing/.eslintignore b/packages/net-stubbing/.eslintignore
deleted file mode 100644
index 2b42008bda67..000000000000
--- a/packages/net-stubbing/.eslintignore
+++ /dev/null
@@ -1,5 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
diff --git a/packages/net-stubbing/eslint.config.ts b/packages/net-stubbing/eslint.config.ts
new file mode 100644
index 000000000000..8b9636ce36e2
--- /dev/null
+++ b/packages/net-stubbing/eslint.config.ts
@@ -0,0 +1,3 @@
+import { baseConfig } from '../../eslint.config'
+
+export default baseConfig
diff --git a/packages/net-stubbing/lib/external-types.ts b/packages/net-stubbing/lib/external-types.ts
index c74c3d043890..579bd3cf3f0b 100644
--- a/packages/net-stubbing/lib/external-types.ts
+++ b/packages/net-stubbing/lib/external-types.ts
@@ -486,7 +486,7 @@ interface WaitOptions {
 declare global {
   namespace Cypress {
     // TODO: Why is Subject unused?
-    // eslint-disable-next-line @typescript-eslint/no-unused-vars
+
     interface Chainable<Subject = any> {
       /**
        * Use `cy.intercept()` to stub and intercept HTTP requests and responses.
diff --git a/packages/net-stubbing/lib/server/intercepted-request.ts b/packages/net-stubbing/lib/server/intercepted-request.ts
index 9b80816f54bf..60668345ff02 100644
--- a/packages/net-stubbing/lib/server/intercepted-request.ts
+++ b/packages/net-stubbing/lib/server/intercepted-request.ts
@@ -21,6 +21,7 @@ export class InterceptedRequest {
     immediateStaticResponse?: BackendStaticResponse
     subscriptions: Subscription[]
   }> = []
+
   includeBodyInAfterResponse: boolean = false
   responseSent: boolean = false
   lastEvent?: string
diff --git a/packages/net-stubbing/lib/server/middleware/request.ts b/packages/net-stubbing/lib/server/middleware/request.ts
index 132d060522cf..63f77a6f5b76 100644
--- a/packages/net-stubbing/lib/server/middleware/request.ts
+++ b/packages/net-stubbing/lib/server/middleware/request.ts
@@ -22,7 +22,7 @@ import { telemetry } from '@packages/telemetry'
 
 // do not use a debug namespace in this file - use the per-request `this.debug` instead
 // available as cypress-verbose:proxy:http
-// eslint-disable-next-line @typescript-eslint/no-unused-vars
+
 const debug = null
 
 export const SetMatchingRoutes: RequestMiddleware = async function () {
diff --git a/packages/net-stubbing/package.json b/packages/net-stubbing/package.json
index 351c2b7cc5d6..4a11d3bc5d02 100644
--- a/packages/net-stubbing/package.json
+++ b/packages/net-stubbing/package.json
@@ -7,7 +7,7 @@
     "build-prod": "tsc --project .",
     "check-ts": "tsc --noEmit",
     "clean-deps": "rimraf node_modules",
-    "lint": "eslint --ext .ts,.json, .",
+    "lint": "eslint .",
     "test": "CYPRESS_INTERNAL_ENV=test mocha -r @packages/ts/register --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json --exit test/unit/*"
   },
   "dependencies": {
diff --git a/packages/net-stubbing/test/.eslintrc.json b/packages/net-stubbing/test/.eslintrc.json
deleted file mode 100644
index b5ed5206d083..000000000000
--- a/packages/net-stubbing/test/.eslintrc.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ]
-}
diff --git a/packages/net-stubbing/test/tsconfig.json b/packages/net-stubbing/test/tsconfig.json
new file mode 100644
index 000000000000..f3364ff72774
--- /dev/null
+++ b/packages/net-stubbing/test/tsconfig.json
@@ -0,0 +1,7 @@
+{
+  "extends": "../../ts/tsconfig.json",
+  "include": ["**/*"],
+  "compilerOptions": {
+    "noEmit": true,
+  }
+}
\ No newline at end of file

From 3cb0ba1f737aac6ffdb15828e3e3a858c55fae1a Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 15:15:38 -0500
Subject: [PATCH 058/127] packages/network

---
 packages/network/.eslintignore                  |  1 -
 packages/network/eslint.config.ts               |  8 ++++++++
 packages/network/lib/client-certificates.ts     |  1 +
 .../network/lib/document-domain-injection.ts    |  8 +++++++-
 packages/network/package.json                   |  2 +-
 packages/network/test/.eslintrc.json            |  5 -----
 packages/network/test/tsconfig.json             |  7 +++++++
 scripts/.eslintrc                               | 17 -----------------
 8 files changed, 24 insertions(+), 25 deletions(-)
 delete mode 100644 packages/network/.eslintignore
 create mode 100644 packages/network/eslint.config.ts
 delete mode 100644 packages/network/test/.eslintrc.json
 create mode 100644 packages/network/test/tsconfig.json
 delete mode 100644 scripts/.eslintrc

diff --git a/packages/network/.eslintignore b/packages/network/.eslintignore
deleted file mode 100644
index d5857ea71fbd..000000000000
--- a/packages/network/.eslintignore
+++ /dev/null
@@ -1 +0,0 @@
-**/tsconfig.json
diff --git a/packages/network/eslint.config.ts b/packages/network/eslint.config.ts
new file mode 100644
index 000000000000..681c7286ef3e
--- /dev/null
+++ b/packages/network/eslint.config.ts
@@ -0,0 +1,8 @@
+import { baseConfig } from '../../eslint.config'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['index.js'],
+  },
+]
diff --git a/packages/network/lib/client-certificates.ts b/packages/network/lib/client-certificates.ts
index 14bb992db5d4..96fcc0ae629b 100644
--- a/packages/network/lib/client-certificates.ts
+++ b/packages/network/lib/client-certificates.ts
@@ -77,6 +77,7 @@ export class UrlClientCertificates {
     this.pathnameLength = new URL(url).pathname.length
     this.clientCertificates = new ClientCertificates()
   }
+
   clientCertificates: ClientCertificates
   url: string
   subjects: string
diff --git a/packages/network/lib/document-domain-injection.ts b/packages/network/lib/document-domain-injection.ts
index c141b1c7a0a5..31dc9f94f6fc 100644
--- a/packages/network/lib/document-domain-injection.ts
+++ b/packages/network/lib/document-domain-injection.ts
@@ -18,7 +18,7 @@ import type { ParsedHostWithProtocolAndHost } from './types'
 const debug = Debug('cypress:network:document-domain-injection')
 
 export abstract class DocumentDomainInjection {
-  public static InjectionBehavior (config: { injectDocumentDomain?: boolean, testingType?: 'e2e' | 'component'}): DocumentDomainInjection {
+  public static InjectionBehavior (config: { injectDocumentDomain?: boolean, testingType?: 'e2e' | 'component' }): DocumentDomainInjection {
     debug('Determining injection behavior for config values: %o', {
       injectDocumentDomain: config.injectDocumentDomain,
       testingType: config.testingType,
@@ -45,9 +45,11 @@ export class DocumentDomainBehavior implements DocumentDomainInjection {
   public getOrigin (url: string) {
     return getSuperDomainOrigin(url)
   }
+
   public getHostname (url: string): string {
     return getSuperDomain(url)
   }
+
   public urlsMatch (frameUrl: string | ParsedHostWithProtocolAndHost, topUrl: string | ParsedHostWithProtocolAndHost): boolean {
     const frameProps = isString(frameUrl) ? parseUrlIntoHostProtocolDomainTldPort(frameUrl) : frameUrl
     const topProps = isString(topUrl) ? parseUrlIntoHostProtocolDomainTldPort(topUrl) : topUrl
@@ -57,6 +59,7 @@ export class DocumentDomainBehavior implements DocumentDomainInjection {
 
     return isEqual(parsedFrameUrl, parsedTopUrl)
   }
+
   public shouldInjectDocumentDomain (url: string | undefined) {
     debug('document-domain behavior: should inject document domain -> true')
 
@@ -68,15 +71,18 @@ export class OriginBehavior implements DocumentDomainInjection {
   public getOrigin (url: string) {
     return new URL(url).origin
   }
+
   public getHostname (url: string): string {
     return new URL(url).hostname
   }
+
   public urlsMatch (frameUrl: string | ParsedHostWithProtocolAndHost, topUrl: string | ParsedHostWithProtocolAndHost): boolean {
     const frameProps = isString(frameUrl) ? parseUrlIntoHostProtocolDomainTldPort(frameUrl) : frameUrl
     const topProps = isString(topUrl) ? parseUrlIntoHostProtocolDomainTldPort(topUrl) : topUrl
 
     return isEqual(frameProps, topProps)
   }
+
   public shouldInjectDocumentDomain (url: string | undefined) {
     debug('origin-behavior: should inject document domain -> false')
 
diff --git a/packages/network/package.json b/packages/network/package.json
index df1bca41ab26..a9ea1f686b8b 100644
--- a/packages/network/package.json
+++ b/packages/network/package.json
@@ -8,7 +8,7 @@
     "check-ts": "tsc --noEmit",
     "clean": "rimraf 'lib/**/*.js'",
     "clean-deps": "rimraf node_modules",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "test": "yarn test-unit",
     "test-debug": "yarn test-unit --inspect-brk=5566",
     "test-unit": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
diff --git a/packages/network/test/.eslintrc.json b/packages/network/test/.eslintrc.json
deleted file mode 100644
index b5ed5206d083..000000000000
--- a/packages/network/test/.eslintrc.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ]
-}
diff --git a/packages/network/test/tsconfig.json b/packages/network/test/tsconfig.json
new file mode 100644
index 000000000000..c5b10887ad09
--- /dev/null
+++ b/packages/network/test/tsconfig.json
@@ -0,0 +1,7 @@
+{
+  "extends": "../../ts/tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+  },
+  "include": ["**/*"]
+}
\ No newline at end of file
diff --git a/scripts/.eslintrc b/scripts/.eslintrc
deleted file mode 100644
index 6dd6b19c2124..000000000000
--- a/scripts/.eslintrc
+++ /dev/null
@@ -1,17 +0,0 @@
-{
-  "plugins": [
-    "cypress",
-    "@cypress/dev"
-  ],
-  "extends": [
-    "plugin:@cypress/dev/general",
-    "plugin:@cypress/dev/tests"
-  ],
-  "env": {
-    "cypress/globals": true
-  },
-  "rules": {
-    "no-console": "off",
-    "prefer-rest-params": "off"
-  }
-}

From 8c1f83f6a1a37d9919ba1463d2e3cd3782047550 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 15:19:41 -0500
Subject: [PATCH 059/127] packages/packherd-require

---
 packages/packherd-require/eslint.config.ts   | 17 +++++++++++++++++
 packages/packherd-require/package.json       |  1 +
 packages/packherd-require/src/loader.ts      |  1 +
 packages/packherd-require/test/tsconfig.json |  8 ++++++++
 4 files changed, 27 insertions(+)
 create mode 100644 packages/packherd-require/eslint.config.ts
 create mode 100644 packages/packherd-require/test/tsconfig.json

diff --git a/packages/packherd-require/eslint.config.ts b/packages/packherd-require/eslint.config.ts
new file mode 100644
index 000000000000..ea40d0dd6d92
--- /dev/null
+++ b/packages/packherd-require/eslint.config.ts
@@ -0,0 +1,17 @@
+import { baseConfig } from '../../eslint.config'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['test/.mocharc.js', 'test/fixtures/**/*'],
+  },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts'],
+        },
+      },
+    },
+  },
+]
diff --git a/packages/packherd-require/package.json b/packages/packherd-require/package.json
index 5e97f7ae14a9..a5ba4284c534 100644
--- a/packages/packherd-require/package.json
+++ b/packages/packherd-require/package.json
@@ -12,6 +12,7 @@
     "test": "yarn test-unit",
     "test-unit": "mocha --config ./test/.mocharc.js",
     "tslint": "tslint --config ../ts/tslint.json --project .",
+    "lint": "eslint .",
     "watch": "tsc --watch"
   },
   "dependencies": {
diff --git a/packages/packherd-require/src/loader.ts b/packages/packherd-require/src/loader.ts
index 8b7606630604..a0c645dfe5fa 100644
--- a/packages/packherd-require/src/loader.ts
+++ b/packages/packherd-require/src/loader.ts
@@ -232,6 +232,7 @@ export class PackherdModuleLoader {
     definitionHits: number
     misses: number
   }
+
   private readonly getModuleKey: GetModuleKey
   private readonly moduleExports: Record<string, Module>
   private readonly moduleDefinitions: Record<string, ModuleDefinition>
diff --git a/packages/packherd-require/test/tsconfig.json b/packages/packherd-require/test/tsconfig.json
new file mode 100644
index 000000000000..ec187a83ccb4
--- /dev/null
+++ b/packages/packherd-require/test/tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "../../ts/tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
\ No newline at end of file

From ad4bb6037d5688e2ef104b40444ce6ff2668faf5 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 15:22:29 -0500
Subject: [PATCH 060/127] packages/proxy

---
 eslint.config.ts                              | 30 ++++++++-----------
 packages/proxy/.eslintignore                  |  1 -
 packages/proxy/eslint.config.ts               |  8 +++++
 packages/proxy/lib/http/error-middleware.ts   |  2 +-
 packages/proxy/lib/http/index.ts              |  4 +--
 packages/proxy/lib/http/request-middleware.ts |  2 +-
 .../proxy/lib/http/response-middleware.ts     |  2 +-
 packages/proxy/lib/http/util/prerequests.ts   |  3 ++
 .../proxy/lib/http/util/replace_stream.ts     |  2 +-
 packages/proxy/package.json                   |  2 +-
 packages/proxy/test/.eslintrc                 |  5 ----
 packages/proxy/test/tsconfig.json             |  8 +++++
 12 files changed, 39 insertions(+), 30 deletions(-)
 delete mode 100644 packages/proxy/.eslintignore
 create mode 100644 packages/proxy/eslint.config.ts
 delete mode 100644 packages/proxy/test/.eslintrc
 create mode 100644 packages/proxy/test/tsconfig.json

diff --git a/eslint.config.ts b/eslint.config.ts
index 5cb611189cdf..34f0b4d01516 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -187,23 +187,6 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       '@typescript-eslint/no-wrapper-object-types': 'off',
       '@typescript-eslint/no-non-null-asserted-optional-chain': 'off',
 
-      'vue/multi-word-component-names': 'off',
-      'vue/html-closing-bracket-spacing': 'off',
-      'vue/no-dupe-keys': 'off',
-      'vue/v-on-event-hyphenation': 'off',
-      'vue/attribute-hyphenation': 'off',
-      'vue/no-useless-template-attributes': 'off',
-
-      'cypress/no-unnecessary-waiting': 'off',
-      'cypress/unsafe-to-chain-command': 'off',
-      'cypress/no-async-tests': 'off',
-      'cypress/no-assigning-return-values': 'off',
-    },
-  },
-
-  // conflicting mocha rules
-  {
-    rules: {
       'mocha/no-mocha-arrows': 'off',
       'mocha/no-setup-in-describe': 'off',
       'mocha/max-top-level-suites': 'off',
@@ -217,6 +200,19 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       'mocha/no-async-describe': 'off',
       'mocha/no-return-and-callback': 'off',
       'mocha/no-pending-tests': 'off',
+      'mocha/no-nested-tests': 'off',
+
+      'vue/multi-word-component-names': 'off',
+      'vue/html-closing-bracket-spacing': 'off',
+      'vue/no-dupe-keys': 'off',
+      'vue/v-on-event-hyphenation': 'off',
+      'vue/attribute-hyphenation': 'off',
+      'vue/no-useless-template-attributes': 'off',
+
+      'cypress/no-unnecessary-waiting': 'off',
+      'cypress/unsafe-to-chain-command': 'off',
+      'cypress/no-async-tests': 'off',
+      'cypress/no-assigning-return-values': 'off',
     },
   },
 
diff --git a/packages/proxy/.eslintignore b/packages/proxy/.eslintignore
deleted file mode 100644
index d5857ea71fbd..000000000000
--- a/packages/proxy/.eslintignore
+++ /dev/null
@@ -1 +0,0 @@
-**/tsconfig.json
diff --git a/packages/proxy/eslint.config.ts b/packages/proxy/eslint.config.ts
new file mode 100644
index 000000000000..681c7286ef3e
--- /dev/null
+++ b/packages/proxy/eslint.config.ts
@@ -0,0 +1,8 @@
+import { baseConfig } from '../../eslint.config'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['index.js'],
+  },
+]
diff --git a/packages/proxy/lib/http/error-middleware.ts b/packages/proxy/lib/http/error-middleware.ts
index 5331bd0f8302..060e15e51ace 100644
--- a/packages/proxy/lib/http/error-middleware.ts
+++ b/packages/proxy/lib/http/error-middleware.ts
@@ -7,7 +7,7 @@ import type { Request } from '@cypress/request'
 
 // do not use a debug namespace in this file - use the per-request `this.debug` instead
 // available as cypress-verbose:proxy:http
-// eslint-disable-next-line @typescript-eslint/no-unused-vars
+
 const debug = null
 
 export type ErrorMiddleware = HttpMiddleware<{
diff --git a/packages/proxy/lib/http/index.ts b/packages/proxy/lib/http/index.ts
index 35478d333e33..a42f5597bcaa 100644
--- a/packages/proxy/lib/http/index.ts
+++ b/packages/proxy/lib/http/index.ts
@@ -49,7 +49,7 @@ export const debugVerbose = Debug('cypress-verbose:proxy:http')
 export enum HttpStages {
   IncomingRequest,
   IncomingResponse,
-  Error
+  Error,
 }
 
 export type HttpMiddleware<T> = (this: HttpMiddlewareThis<T>) => void
@@ -278,7 +278,7 @@ export class Http {
   socket: CyServer.Socket
   serverBus: EventEmitter
   resourceTypeAndCredentialManager: ResourceTypeAndCredentialManager
-  renderedHTMLOrigins: {[key: string]: boolean} = {}
+  renderedHTMLOrigins: { [key: string]: boolean } = {}
   autUrl?: string
   getCookieJar: () => CookieJar
   protocolManager?: ProtocolManagerShape
diff --git a/packages/proxy/lib/http/request-middleware.ts b/packages/proxy/lib/http/request-middleware.ts
index d102bfc0a4f2..48dd2f95bd9c 100644
--- a/packages/proxy/lib/http/request-middleware.ts
+++ b/packages/proxy/lib/http/request-middleware.ts
@@ -13,7 +13,7 @@ import type { CypressIncomingRequest } from '../types'
 
 // do not use a debug namespace in this file - use the per-request `this.debug` instead
 // available as cypress-verbose:proxy:http
-// eslint-disable-next-line @typescript-eslint/no-unused-vars
+
 const debug = null
 
 export type RequestMiddleware = HttpMiddleware<{
diff --git a/packages/proxy/lib/http/response-middleware.ts b/packages/proxy/lib/http/response-middleware.ts
index bcfee701ae7d..0a50c27af639 100644
--- a/packages/proxy/lib/http/response-middleware.ts
+++ b/packages/proxy/lib/http/response-middleware.ts
@@ -43,7 +43,7 @@ export type ResponseMiddleware = HttpMiddleware<ResponseMiddlewareProps>
 
 // do not use a debug namespace in this file - use the per-request `this.debug` instead
 // available as cypress-verbose:proxy:http
-// eslint-disable-next-line @typescript-eslint/no-unused-vars
+
 const debug = null
 
 // https://github.com/cypress-io/cypress/issues/1756
diff --git a/packages/proxy/lib/http/util/prerequests.ts b/packages/proxy/lib/http/util/prerequests.ts
index a9c2d347437c..712c501a266a 100644
--- a/packages/proxy/lib/http/util/prerequests.ts
+++ b/packages/proxy/lib/http/util/prerequests.ts
@@ -57,6 +57,7 @@ class QueueMap<T> {
 
     this.queues[queueKey].push(value)
   }
+
   shift (queueKey: string): T | undefined {
     const queue = this.queues[queueKey]
 
@@ -68,12 +69,14 @@ class QueueMap<T> {
 
     return item
   }
+
   removeMatching (filterFn: (value: T) => boolean) {
     Object.entries(this.queues).forEach(([queueKey, queue]) => {
       this.queues[queueKey] = queue.filter(filterFn)
       if (this.queues[queueKey].length === 0) delete this.queues[queueKey]
     })
   }
+
   removeExact (queueKey: string, value: T) {
     const i = this.queues[queueKey]?.findIndex((v) => v === value)
 
diff --git a/packages/proxy/lib/http/util/replace_stream.ts b/packages/proxy/lib/http/util/replace_stream.ts
index ace4a8f6294b..286d34e33344 100644
--- a/packages/proxy/lib/http/util/replace_stream.ts
+++ b/packages/proxy/lib/http/util/replace_stream.ts
@@ -43,7 +43,7 @@ export function replaceStream (patterns: RegExp | RegExp[], replacements: string
 
       tail = tail.replace(pattern, function replacer (match) {
         // ugly, but necessary due to bizarre function signature of String#replace
-        const offset = arguments[arguments.length - 2] // eslint-disable-line prefer-rest-params
+        const offset = arguments[arguments.length - 2]
 
         if (offset + replacement.length > replacementEndIndex) {
           replacementEndIndex = offset + replacement.length
diff --git a/packages/proxy/package.json b/packages/proxy/package.json
index 2be98702ac77..3939847a1ae3 100644
--- a/packages/proxy/package.json
+++ b/packages/proxy/package.json
@@ -8,7 +8,7 @@
     "check-ts": "tsc --noEmit",
     "clean": "rimraf 'lib/**/*.js'",
     "clean-deps": "rimraf node_modules",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "run-mocha": "mocha -r @packages/ts/register -r test/pretest.ts --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
     "test": "CYPRESS_INTERNAL_ENV=test yarn run-mocha \"test/integration/*.spec.ts\" \"test/unit/**/*.spec.ts\"",
     "test-integration": "CYPRESS_INTERNAL_ENV=test yarn run-mocha \"test/integration/*.spec.ts\"",
diff --git a/packages/proxy/test/.eslintrc b/packages/proxy/test/.eslintrc
deleted file mode 100644
index b5ed5206d083..000000000000
--- a/packages/proxy/test/.eslintrc
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ]
-}
diff --git a/packages/proxy/test/tsconfig.json b/packages/proxy/test/tsconfig.json
new file mode 100644
index 000000000000..ec187a83ccb4
--- /dev/null
+++ b/packages/proxy/test/tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "../../ts/tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
\ No newline at end of file

From 92e192befd998e0906d6b23839f60faa95af4664 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 15:25:57 -0500
Subject: [PATCH 061/127] packages/reporter

---
 packages/reporter/.eslintignore                    |  5 -----
 packages/reporter/.eslintrc.json                   |  9 ---------
 packages/reporter/cypress/e2e/header.cy.ts         |  2 +-
 packages/reporter/eslint.config.ts                 | 14 ++++++++++++++
 packages/reporter/index.d.ts                       |  6 +++---
 packages/reporter/package.json                     |  2 +-
 packages/reporter/src/attempts/attempt-model.ts    |  7 ++++---
 packages/reporter/src/attempts/attempts.tsx        |  4 ++--
 packages/reporter/src/commands/command-model.ts    |  2 +-
 packages/reporter/src/commands/command.tsx         |  5 ++---
 packages/reporter/src/errors/test-error.tsx        |  3 +--
 packages/reporter/src/header/header.tsx            |  3 +--
 packages/reporter/src/main.scss.d.ts               |  5 +++--
 packages/reporter/src/main.tsx                     |  2 +-
 packages/reporter/src/runnables/runnable-error.tsx |  3 +--
 packages/reporter/src/sessions/utils.ts            |  2 +-
 16 files changed, 36 insertions(+), 38 deletions(-)
 delete mode 100644 packages/reporter/.eslintignore
 delete mode 100644 packages/reporter/.eslintrc.json
 create mode 100644 packages/reporter/eslint.config.ts

diff --git a/packages/reporter/.eslintignore b/packages/reporter/.eslintignore
deleted file mode 100644
index 79afe972da7d..000000000000
--- a/packages/reporter/.eslintignore
+++ /dev/null
@@ -1,5 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
\ No newline at end of file
diff --git a/packages/reporter/.eslintrc.json b/packages/reporter/.eslintrc.json
deleted file mode 100644
index bbbce2be2877..000000000000
--- a/packages/reporter/.eslintrc.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-  "plugins": [
-    "cypress",
-    "@cypress/dev"
-  ],
-  "env": {
-    "cypress/globals": true
-  }
-}
diff --git a/packages/reporter/cypress/e2e/header.cy.ts b/packages/reporter/cypress/e2e/header.cy.ts
index 6f057d33ca52..6fed103a9bc8 100755
--- a/packages/reporter/cypress/e2e/header.cy.ts
+++ b/packages/reporter/cypress/e2e/header.cy.ts
@@ -8,7 +8,7 @@ describe('header', () => {
   let runner: EventEmitter
   let runnables: RootRunnable
 
-  function setupReporter (opts?: { testFilter: TestFilter, totalUnfilteredTests: number, skipRunnableCreation?: boolean}) {
+  function setupReporter (opts?: { testFilter: TestFilter, totalUnfilteredTests: number, skipRunnableCreation?: boolean }) {
     if (opts?.skipRunnableCreation) {
       runnables = {}
     } else {
diff --git a/packages/reporter/eslint.config.ts b/packages/reporter/eslint.config.ts
new file mode 100644
index 000000000000..7df27bfc6e76
--- /dev/null
+++ b/packages/reporter/eslint.config.ts
@@ -0,0 +1,14 @@
+import { baseConfig } from '../../eslint.config'
+
+export default [
+  ...baseConfig,
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['index.ts', 'eslint.config.ts', 'cypress.config.ts', 'webpack.config.ts'],
+        },
+      },
+    },
+  },
+]
diff --git a/packages/reporter/index.d.ts b/packages/reporter/index.d.ts
index e930058784d1..6a2282259331 100644
--- a/packages/reporter/index.d.ts
+++ b/packages/reporter/index.d.ts
@@ -17,7 +17,7 @@ declare namespace Cypress {
   }
 }
 
-declare module "*.svg" {
-  const content: any;
-  export default content;
+declare module '*.svg' {
+  const content: any
+  export default content
 }
diff --git a/packages/reporter/package.json b/packages/reporter/package.json
index 96bc6bc0b16a..b5620fb4c276 100644
--- a/packages/reporter/package.json
+++ b/packages/reporter/package.json
@@ -9,7 +9,7 @@
     "cypress:open": "node ../../scripts/cypress open --project .",
     "cypress:run": "node ../../scripts/cypress run --project .",
     "cypress:run:ct": "cross-env TZ=America/New_York node ../../scripts/cypress run --component --project .",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "watch": "yarn build-for-tests --watch --progress"
   },
   "devDependencies": {
diff --git a/packages/reporter/src/attempts/attempt-model.ts b/packages/reporter/src/attempts/attempt-model.ts
index 585f4fca25df..4986645ce7a2 100644
--- a/packages/reporter/src/attempts/attempt-model.ts
+++ b/packages/reporter/src/attempts/attempt-model.ts
@@ -26,7 +26,7 @@ export default class Attempt {
   @observable _testOuterStatus?: TestState = undefined
   @observable _invocationCount: number = 0
   @observable invocationDetails?: FileDetails
-  // eslint-disable-next-line @typescript-eslint/no-unused-vars
+
   @observable hookCount: { [name in HookName]: number } = {
     'before all': 0,
     'before each': 0,
@@ -35,7 +35,8 @@ export default class Attempt {
     'test body': 0,
     'studio commands': 0,
   }
-  @observable _isOpen: boolean|null = null
+
+  @observable _isOpen: boolean | null = null
 
   @observable isOpenWhenLast: boolean | null = null
   _callbackAfterUpdate: Function | null = null
@@ -44,7 +45,7 @@ export default class Attempt {
   @observable id: number
   test: Test
 
-  _logs: {[key: string]: Log} = {}
+  _logs: { [key: string]: Log } = {}
 
   constructor (props: TestProps, test: Test) {
     makeObservable(this)
diff --git a/packages/reporter/src/attempts/attempts.tsx b/packages/reporter/src/attempts/attempts.tsx
index 1d86f6518db8..2fec322dd12f 100644
--- a/packages/reporter/src/attempts/attempts.tsx
+++ b/packages/reporter/src/attempts/attempts.tsx
@@ -24,7 +24,7 @@ const NoCommands = () => (
   </ul>
 )
 
-const AttemptHeader = ({ index, state }: {index: number, state: TestState }) => (
+const AttemptHeader = ({ index, state }: { index: number, state: TestState }) => (
   <span className='attempt-tag'>
     <span className='open-close-indicator'>
       <CollapseIcon className='collapse-icon' />
@@ -103,7 +103,7 @@ class Attempt extends Component<AttemptProps> {
   }
 }
 
-const Attempts = observer(({ test, scrollIntoView, studioActive }: {test: TestModel, scrollIntoView: Function, studioActive: boolean}) => {
+const Attempts = observer(({ test, scrollIntoView, studioActive }: { test: TestModel, scrollIntoView: Function, studioActive: boolean }) => {
   return (<ul className={cs('attempts', {
     'has-multiple-attempts': test.hasMultipleAttempts,
   })}>
diff --git a/packages/reporter/src/commands/command-model.ts b/packages/reporter/src/commands/command-model.ts
index c3f45a18719e..59f32884a3f5 100644
--- a/packages/reporter/src/commands/command-model.ts
+++ b/packages/reporter/src/commands/command-model.ts
@@ -59,7 +59,7 @@ export default class Command extends Instrument {
   @observable groupLevel?: number
   @observable hasSnapshot?: boolean
   @observable hasConsoleProps?: boolean
-  @observable _isOpen: boolean|null = null
+  @observable _isOpen: boolean | null = null
 
   private _prevState: string | null | undefined = null
   private _pendingTimeout?: TimeoutID = undefined
diff --git a/packages/reporter/src/commands/command.tsx b/packages/reporter/src/commands/command.tsx
index 77b79bba0daf..e0b7d7f528ab 100644
--- a/packages/reporter/src/commands/command.tsx
+++ b/packages/reporter/src/commands/command.tsx
@@ -305,8 +305,7 @@ const CommandDetails = observer(({ model, groupId, aliasesWithDuplicates }) => (
     {!!groupId && model.type === 'system' && model.state === 'failed' && <StateIcon aria-hidden className='failed-indicator' state={model.state}/>}
     {model.referencesAlias ?
       <AliasesReferences model={model} aliasesWithDuplicates={aliasesWithDuplicates} />
-      : <Message model={model} />
-    }
+      : <Message model={model} />}
   </span>
 ))
 
@@ -370,7 +369,7 @@ const CommandControls = observer(({ model, commandName, events }) => {
 
 @observer
 class Command extends Component<Props> {
-  @observable isOpen: boolean|null = null
+  @observable isOpen: boolean | null = null
   private _showTimeout?: TimeoutID
 
   static defaultProps = {
diff --git a/packages/reporter/src/errors/test-error.tsx b/packages/reporter/src/errors/test-error.tsx
index 0526e1be31af..6ba77066ca42 100644
--- a/packages/reporter/src/errors/test-error.tsx
+++ b/packages/reporter/src/errors/test-error.tsx
@@ -113,8 +113,7 @@ const TestError = (props: TestErrorProps) => {
             contentClass='runnable-err-stack-trace'
           >
             <ErrorStack err={err} />
-          </Collapsible>
-          }
+          </Collapsible>}
         </div>
       </div>
     </div>
diff --git a/packages/reporter/src/header/header.tsx b/packages/reporter/src/header/header.tsx
index fee2fb154d0f..ab0513b37b39 100644
--- a/packages/reporter/src/header/header.tsx
+++ b/packages/reporter/src/header/header.tsx
@@ -33,8 +33,7 @@ const Header = observer(({ appState, events = defaultEvents, statsStore, runnabl
             appState.toggleSpecList()
             events.emit('save:state')
           })()
-        }
-        }>
+        }}>
         <MenuExpandRightIcon style={{ transform: appState.isSpecsListOpen ? 'rotate(180deg)' : 'rotate(0deg)' }} />
 
         <span className='toggle-specs-text'>Specs</span>
diff --git a/packages/reporter/src/main.scss.d.ts b/packages/reporter/src/main.scss.d.ts
index 132b232e8959..7356746eb3bd 100644
--- a/packages/reporter/src/main.scss.d.ts
+++ b/packages/reporter/src/main.scss.d.ts
@@ -3,5 +3,6 @@
 interface CssExports {
 
 }
-export const cssExports: CssExports;
-export default cssExports;
+export const cssExports: CssExports
+
+export default cssExports
diff --git a/packages/reporter/src/main.tsx b/packages/reporter/src/main.tsx
index e299c25f9a85..24502323f86f 100644
--- a/packages/reporter/src/main.tsx
+++ b/packages/reporter/src/main.tsx
@@ -37,7 +37,7 @@ export interface BaseReporterProps {
   runnerStore: MobxRunnerStore
 }
 
-export interface SingleReporterProps extends BaseReporterProps{
+export interface SingleReporterProps extends BaseReporterProps {
   runMode: 'single'
 }
 
diff --git a/packages/reporter/src/runnables/runnable-error.tsx b/packages/reporter/src/runnables/runnable-error.tsx
index df6b12ed950d..91365a285560 100644
--- a/packages/reporter/src/runnables/runnable-error.tsx
+++ b/packages/reporter/src/runnables/runnable-error.tsx
@@ -25,8 +25,7 @@ export const RunnablesError = observer(({ error }: RunnablesErrorProps) => (
       {error.link &&
         <a href={error.link} target='_blank' rel='noopener noreferrer'>
           <QuestionMarkIcon />
-        </a>
-      }
+        </a>}
     </h2>
     {error.callout && <pre>{error.callout}</pre>}
     <div className='error-message' dangerouslySetInnerHTML={{ __html: md.render(error.message) }} />
diff --git a/packages/reporter/src/sessions/utils.ts b/packages/reporter/src/sessions/utils.ts
index 34fecd367076..7e519fcf4c10 100644
--- a/packages/reporter/src/sessions/utils.ts
+++ b/packages/reporter/src/sessions/utils.ts
@@ -9,7 +9,7 @@ function determineTagType (state: string) {
   }
 }
 
-export type SessionStatus = 'creating' | 'created' | 'restoring' |'restored' | 'recreating' | 'recreated' | 'failed'
+export type SessionStatus = 'creating' | 'created' | 'restoring' | 'restored' | 'recreating' | 'recreated' | 'failed'
 
 export {
   determineTagType,

From 5c06e17619ced9e0e20382d5dfa68254a8e4d971 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 15:27:12 -0500
Subject: [PATCH 062/127] packages/resolve-dist

---
 packages/resolve-dist/.eslintignore    | 1 -
 packages/resolve-dist/eslint.config.ts | 8 ++++++++
 packages/resolve-dist/package.json     | 2 +-
 3 files changed, 9 insertions(+), 2 deletions(-)
 delete mode 100644 packages/resolve-dist/.eslintignore
 create mode 100644 packages/resolve-dist/eslint.config.ts

diff --git a/packages/resolve-dist/.eslintignore b/packages/resolve-dist/.eslintignore
deleted file mode 100644
index d5857ea71fbd..000000000000
--- a/packages/resolve-dist/.eslintignore
+++ /dev/null
@@ -1 +0,0 @@
-**/tsconfig.json
diff --git a/packages/resolve-dist/eslint.config.ts b/packages/resolve-dist/eslint.config.ts
new file mode 100644
index 000000000000..681c7286ef3e
--- /dev/null
+++ b/packages/resolve-dist/eslint.config.ts
@@ -0,0 +1,8 @@
+import { baseConfig } from '../../eslint.config'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['index.js'],
+  },
+]
diff --git a/packages/resolve-dist/package.json b/packages/resolve-dist/package.json
index 905ff18acfae..8071b12fdc9f 100644
--- a/packages/resolve-dist/package.json
+++ b/packages/resolve-dist/package.json
@@ -8,7 +8,7 @@
     "check-ts": "tsc --noEmit",
     "clean": "rimraf 'lib/**/*.js'",
     "clean-deps": "rimraf node_modules",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, ."
+    "lint": "eslint ."
   },
   "dependencies": {
     "fs-extra": "9.1.0"

From d70180ba7e60da55c182c316f6a37511e581a45c Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 15:29:48 -0500
Subject: [PATCH 063/127] packages/rewriter

---
 packages/rewriter/.eslintignore               |  7 -----
 packages/rewriter/eslint.config.ts            | 28 +++++++++++++++++++
 .../rewriter/lib/deferred-source-map-cache.ts |  1 -
 packages/rewriter/package.json                |  2 +-
 packages/rewriter/test/.eslintrc              |  5 ----
 packages/rewriter/test/fixtures/test.js       | 14 +++++-----
 packages/rewriter/test/tsconfig.json          |  8 ++++++
 7 files changed, 44 insertions(+), 21 deletions(-)
 delete mode 100644 packages/rewriter/.eslintignore
 create mode 100644 packages/rewriter/eslint.config.ts
 delete mode 100644 packages/rewriter/test/.eslintrc
 create mode 100644 packages/rewriter/test/tsconfig.json

diff --git a/packages/rewriter/.eslintignore b/packages/rewriter/.eslintignore
deleted file mode 100644
index 677df239bad1..000000000000
--- a/packages/rewriter/.eslintignore
+++ /dev/null
@@ -1,7 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
-**/__snapshots__
-**/test/fixtures
\ No newline at end of file
diff --git a/packages/rewriter/eslint.config.ts b/packages/rewriter/eslint.config.ts
new file mode 100644
index 000000000000..1b2f0f6329e9
--- /dev/null
+++ b/packages/rewriter/eslint.config.ts
@@ -0,0 +1,28 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['index.js'],
+  },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['script/worker-shim.js'],
+        },
+      },
+    },
+  },
+  {
+    files: ['script/worker-shim.js'],
+
+    languageOptions: {
+      globals: {
+        ...globals.node,
+      },
+    },
+
+  },
+]
diff --git a/packages/rewriter/lib/deferred-source-map-cache.ts b/packages/rewriter/lib/deferred-source-map-cache.ts
index 0dfebe7101ab..46ac1fd96b12 100644
--- a/packages/rewriter/lib/deferred-source-map-cache.ts
+++ b/packages/rewriter/lib/deferred-source-map-cache.ts
@@ -95,7 +95,6 @@ export class DeferredSourceMapCache {
 
       return body
     } catch (error) {
-      // eslint-disable-next-line no-console
       debug('got an error loading user-provided sourcemap, serving proxy-generated sourcemap only %o', { url: request.url, headers, error })
     }
   }
diff --git a/packages/rewriter/package.json b/packages/rewriter/package.json
index 25cee374656f..2bdb2c97da6d 100644
--- a/packages/rewriter/package.json
+++ b/packages/rewriter/package.json
@@ -9,7 +9,7 @@
     "check-ts": "tsc --noEmit",
     "clean": "rimraf 'lib/**/*.js'",
     "clean-deps": "rimraf node_modules",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "test": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json"
   },
   "dependencies": {
diff --git a/packages/rewriter/test/.eslintrc b/packages/rewriter/test/.eslintrc
deleted file mode 100644
index b5ed5206d083..000000000000
--- a/packages/rewriter/test/.eslintrc
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ]
-}
diff --git a/packages/rewriter/test/fixtures/test.js b/packages/rewriter/test/fixtures/test.js
index 109cd3cee729..0600c158afbe 100644
--- a/packages/rewriter/test/fixtures/test.js
+++ b/packages/rewriter/test/fixtures/test.js
@@ -1,14 +1,14 @@
 // Generated by CoffeeScript 2.2.1
-(function() {
+(function () {
   // just an example of transpilation w/ sourcemap -
   // `test.coffee` is not directly transpiled/executed by any test code
   // regenerate JS + sourcemap with `coffee -c -m test.coffee`
-  setTimeout(function() {
-    window;
-    var foo;
-    return foo = `${window.top.foo}`;
-  }, 1000);
+  setTimeout(function () {
+    window
+    var foo
 
-}).call(this);
+    return foo = `${window.top.foo}`
+  }, 1000)
+}).call(this)
 
 //# sourceMappingURL=test.js.map
diff --git a/packages/rewriter/test/tsconfig.json b/packages/rewriter/test/tsconfig.json
new file mode 100644
index 000000000000..ec187a83ccb4
--- /dev/null
+++ b/packages/rewriter/test/tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "../../ts/tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
\ No newline at end of file

From a98c2bd7f3cc43cf5e4866f2551401101599c1ce Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 15:30:50 -0500
Subject: [PATCH 064/127] packages/runner

---
 packages/runner/.eslintignore    | 6 ------
 packages/runner/eslint.config.ts | 5 +++++
 packages/runner/package.json     | 2 +-
 3 files changed, 6 insertions(+), 7 deletions(-)
 delete mode 100644 packages/runner/.eslintignore
 create mode 100644 packages/runner/eslint.config.ts

diff --git a/packages/runner/.eslintignore b/packages/runner/.eslintignore
deleted file mode 100644
index fccf63150adf..000000000000
--- a/packages/runner/.eslintignore
+++ /dev/null
@@ -1,6 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
-**/__snapshots__
\ No newline at end of file
diff --git a/packages/runner/eslint.config.ts b/packages/runner/eslint.config.ts
new file mode 100644
index 000000000000..8c91f1e0c081
--- /dev/null
+++ b/packages/runner/eslint.config.ts
@@ -0,0 +1,5 @@
+import { baseConfig } from '../../eslint.config'
+
+export default [
+  ...baseConfig,
+]
diff --git a/packages/runner/package.json b/packages/runner/package.json
index cf36e9b04fc7..e7af435ee48f 100644
--- a/packages/runner/package.json
+++ b/packages/runner/package.json
@@ -11,7 +11,7 @@
     "cypress:open": "echo \"These tests have been moved to @packages/app. \" && exit 1",
     "cypress:run": "echo \"These tests have been moved to @packages/app. \" && exit 1",
     "postinstall": "echo '@packages/runner needs: yarn build'",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "watch": "node ../../scripts/run-webpack --watch --progress"
   },
   "devDependencies": {

From ddbe9a96682929d3bb978343860e8c3e281abfef Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 15:33:23 -0500
Subject: [PATCH 065/127] packages/scaffold-config

---
 packages/scaffold-config/.eslintignore      |  1 -
 packages/scaffold-config/eslint.config.ts   | 17 +++++++++++++++++
 packages/scaffold-config/package.json       |  2 +-
 packages/scaffold-config/src/frameworks.ts  |  2 +-
 packages/scaffold-config/test/tsconfig.json |  8 ++++++++
 5 files changed, 27 insertions(+), 3 deletions(-)
 delete mode 100644 packages/scaffold-config/.eslintignore
 create mode 100644 packages/scaffold-config/eslint.config.ts
 create mode 100644 packages/scaffold-config/test/tsconfig.json

diff --git a/packages/scaffold-config/.eslintignore b/packages/scaffold-config/.eslintignore
deleted file mode 100644
index d5857ea71fbd..000000000000
--- a/packages/scaffold-config/.eslintignore
+++ /dev/null
@@ -1 +0,0 @@
-**/tsconfig.json
diff --git a/packages/scaffold-config/eslint.config.ts b/packages/scaffold-config/eslint.config.ts
new file mode 100644
index 000000000000..d7ea8cf0a954
--- /dev/null
+++ b/packages/scaffold-config/eslint.config.ts
@@ -0,0 +1,17 @@
+import { baseConfig } from '../../eslint.config'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['index.js'],
+  },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts'],
+        },
+      },
+    },
+  },
+]
diff --git a/packages/scaffold-config/package.json b/packages/scaffold-config/package.json
index ec6c3263b1ba..099bbc156a86 100644
--- a/packages/scaffold-config/package.json
+++ b/packages/scaffold-config/package.json
@@ -9,7 +9,7 @@
     "check-ts": "tsc --noEmit",
     "clean": "rimraf ./src/*.js ./src/**/*.js ./src/**/**/*.js ./test/**/*.js || echo 'cleaned'",
     "clean-deps": "rimraf node_modules",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "test": "yarn test-unit",
     "test-unit": "mocha -r @packages/ts/register 'test/unit/**' --config ./test/.mocharc.js --exit --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json"
   },
diff --git a/packages/scaffold-config/src/frameworks.ts b/packages/scaffold-config/src/frameworks.ts
index cf914d1c6903..e3ef680b3f18 100644
--- a/packages/scaffold-config/src/frameworks.ts
+++ b/packages/scaffold-config/src/frameworks.ts
@@ -14,7 +14,7 @@ export type WizardBundler = typeof dependencies.WIZARD_BUNDLERS[number]
 
 export type CodeGenFramework = Cypress.ResolvedComponentFrameworkDefinition['codeGenFramework']
 
-export async function isDependencyInstalledByName (packageName: string, projectPath: string): Promise<{dependency: string, detectedVersion: string | null}> {
+export async function isDependencyInstalledByName (packageName: string, projectPath: string): Promise<{ dependency: string, detectedVersion: string | null }> {
   let detectedVersion: string | null = null
 
   try {
diff --git a/packages/scaffold-config/test/tsconfig.json b/packages/scaffold-config/test/tsconfig.json
new file mode 100644
index 000000000000..7c42d0242303
--- /dev/null
+++ b/packages/scaffold-config/test/tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "../../ts/tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true,
+  },
+  "include": ["**/*", ".mocharc.js"]
+}
\ No newline at end of file

From 925955f28639182ca6e173739f428f648315e4ba Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 15:44:45 -0500
Subject: [PATCH 066/127] packages/server

---
 packages/server/.eslintignore                 |  7 ----
 packages/server/eslint.config.ts              | 32 +++++++++++++++++++
 packages/server/eslint.tsconfig.json          |  8 +++++
 .../server/lib/browsers/cdp-connection.ts     |  5 ++-
 .../server/lib/browsers/cdp_automation.ts     |  1 -
 packages/server/lib/browsers/chrome.ts        |  2 +-
 packages/server/lib/browsers/firefox.ts       |  2 +-
 .../server/lib/browsers/memory/cgroup-v1.ts   |  2 +-
 packages/server/lib/browsers/memory/index.ts  |  2 +-
 packages/server/lib/browsers/utils.ts         |  9 +++---
 packages/server/lib/capture.js                |  2 --
 .../cloud/artifacts/screenshot_artifact.ts    |  4 +--
 .../server/lib/cloud/network/parse_error.ts   |  1 +
 .../server/lib/cloud/network/put_fetch.ts     |  4 +--
 .../lib/cloud/upload/stream_stalled_error.ts  |  2 +-
 packages/server/lib/controllers/iframes.ts    |  1 -
 packages/server/lib/modes/interactive.ts      |  3 +-
 packages/server/lib/modes/results.ts          |  2 --
 packages/server/lib/modes/run.ts              |  3 +-
 .../privileged-commands/privileged-channel.js |  1 +
 packages/server/lib/routes.ts                 |  1 -
 packages/server/lib/server-base.ts            |  2 +-
 packages/server/lib/socket-base.ts            |  2 +-
 packages/server/lib/util/async_retry.ts       |  4 +--
 packages/server/lib/util/ensure-url.ts        |  2 +-
 packages/server/lib/util/fs.ts                |  2 --
 packages/server/lib/util/print-run.ts         |  4 ---
 packages/server/lib/util/stream_buffer.ts     |  3 ++
 packages/server/package.json                  |  2 +-
 .../server/test/integration/cypress_spec.js   |  1 +
 .../test/unit/cloud/network/put_fetch_spec.ts |  2 +-
 packages/server/test/unit/config_spec.js      |  2 +-
 .../test/unit/util/suppress_warnings_spec.ts  |  3 +-
 33 files changed, 74 insertions(+), 49 deletions(-)
 delete mode 100644 packages/server/.eslintignore
 create mode 100644 packages/server/eslint.config.ts
 create mode 100644 packages/server/eslint.tsconfig.json

diff --git a/packages/server/.eslintignore b/packages/server/.eslintignore
deleted file mode 100644
index 991d0b3d8fec..000000000000
--- a/packages/server/.eslintignore
+++ /dev/null
@@ -1,7 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
-**/support/fixtures/*
-**/__snapshots__
\ No newline at end of file
diff --git a/packages/server/eslint.config.ts b/packages/server/eslint.config.ts
new file mode 100644
index 000000000000..dea61ad3a2ae
--- /dev/null
+++ b/packages/server/eslint.config.ts
@@ -0,0 +1,32 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['**/fixtures/**/*'],
+  },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: false,
+        project: './eslint.tsconfig.json',
+      },
+      globals: {
+        ...globals.node,
+      },
+    },
+  },
+  {
+    files: ['test/**'],
+    languageOptions: {
+      globals: {
+        sinon: 'readonly',
+        nock: 'readonly',
+        mockery: 'readonly',
+        proxyquire: 'readonly',
+        supertest: 'readonly',
+      },
+    },
+  },
+]
diff --git a/packages/server/eslint.tsconfig.json b/packages/server/eslint.tsconfig.json
new file mode 100644
index 000000000000..dfa01a1a2974
--- /dev/null
+++ b/packages/server/eslint.tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "./tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true
+  },
+  "include": ["**/*"]
+}
\ No newline at end of file
diff --git a/packages/server/lib/browsers/cdp-connection.ts b/packages/server/lib/browsers/cdp-connection.ts
index c26a940a79ec..94d85784dc1b 100644
--- a/packages/server/lib/browsers/cdp-connection.ts
+++ b/packages/server/lib/browsers/cdp-connection.ts
@@ -65,7 +65,7 @@ export class CDPConnection {
 
   get ws () {
     // this is reached into by browser-cri-client to detect close events - needs rethinking
-    return (this._connection as { _ws?: WebSocket})._ws
+    return (this._connection as { _ws?: WebSocket })._ws
   }
 
   on<T extends CdpEvent> (event: T, callback: CDPListener<T>) {
@@ -73,13 +73,16 @@ export class CDPConnection {
 
     this._emitter.on(event, callback)
   }
+
   addConnectionEventListener<T extends CDPConnectionEvent> (event: T, callback: CDPConnectionEventListener<T>) {
     this.debug('adding connection event listener for ', event)
     this._emitter.on(event, callback)
   }
+
   off<T extends CdpEvent> (event: T, callback: CDPListener<T>) {
     this._emitter.off(event, callback)
   }
+
   removeConnectionEventListener<T extends CDPConnectionEvent> (event: T, callback: CDPConnectionEventListener<T>) {
     this._emitter.off(event, callback)
   }
diff --git a/packages/server/lib/browsers/cdp_automation.ts b/packages/server/lib/browsers/cdp_automation.ts
index 853a14ad1a2e..46e2c3fcb728 100644
--- a/packages/server/lib/browsers/cdp_automation.ts
+++ b/packages/server/lib/browsers/cdp_automation.ts
@@ -378,7 +378,6 @@ export class CdpAutomation implements CDPClient {
     })
   }
 
-  // eslint-disable-next-line @cypress/dev/arrow-body-multiline-braces
   private _updateFrameTree = (client: CriClient, eventName) => async () => {
     debugVerbose(`update frame tree for ${eventName}`)
 
diff --git a/packages/server/lib/browsers/chrome.ts b/packages/server/lib/browsers/chrome.ts
index d386dded7604..5546f1056b12 100644
--- a/packages/server/lib/browsers/chrome.ts
+++ b/packages/server/lib/browsers/chrome.ts
@@ -551,7 +551,7 @@ export = {
     // first allows us to connect the remote interface,
     // start video recording and then
     // we will load the actual page
-    const launchedBrowser = await launch(browser, 'about:blank', port, args, launchOptions.env) as unknown as BrowserInstance & { browserCriClient: BrowserCriClient}
+    const launchedBrowser = await launch(browser, 'about:blank', port, args, launchOptions.env) as unknown as BrowserInstance & { browserCriClient: BrowserCriClient }
 
     la(launchedBrowser, 'did not get launched browser instance')
 
diff --git a/packages/server/lib/browsers/firefox.ts b/packages/server/lib/browsers/firefox.ts
index d493409f4321..bbfe8ff14bae 100644
--- a/packages/server/lib/browsers/firefox.ts
+++ b/packages/server/lib/browsers/firefox.ts
@@ -326,7 +326,7 @@ const defaultPreferences = {
   'dom.timeout.enable_budget_timer_throttling': false,
 
   // allow getUserMedia APIs on insecure domains
-  'media.devices.insecure.enabled':	true,
+  'media.devices.insecure.enabled': true,
   'media.getusermedia.insecure.enabled': true,
 
   'marionette.log.level': launcherDebug.enabled ? 'Debug' : undefined,
diff --git a/packages/server/lib/browsers/memory/cgroup-v1.ts b/packages/server/lib/browsers/memory/cgroup-v1.ts
index a44e873e741d..085f43fc5d62 100644
--- a/packages/server/lib/browsers/memory/cgroup-v1.ts
+++ b/packages/server/lib/browsers/memory/cgroup-v1.ts
@@ -17,7 +17,7 @@ const getTotalMemoryLimit = async () => {
  * @returns object of memory stats
  */
 const convertRawStats = (rawStats: string): { total_inactive_file: string } => {
-  const stats = rawStats.split('\n').filter(Boolean).reduce((acc, arr): { total_inactive_file: string} => {
+  const stats = rawStats.split('\n').filter(Boolean).reduce((acc, arr): { total_inactive_file: string } => {
     const stat = arr.split(' ')
 
     acc[stat[0]] = stat[1]
diff --git a/packages/server/lib/browsers/memory/index.ts b/packages/server/lib/browsers/memory/index.ts
index fcf158492593..6f8bd51a1cbe 100644
--- a/packages/server/lib/browsers/memory/index.ts
+++ b/packages/server/lib/browsers/memory/index.ts
@@ -251,7 +251,7 @@ export const calculateMemoryStats: () => Promise<void> = measure(async () => {
  * @param automation - the automation client used to collect garbage
  * @param test - the current test
  */
-const checkMemoryPressureAndLog = async ({ automation, test }: { automation: Automation, test: { title: string, order: number, currentRetry: number }}) => {
+const checkMemoryPressureAndLog = async ({ automation, test }: { automation: Automation, test: { title: string, order: number, currentRetry: number } }) => {
   await checkMemoryPressure(automation)
 
   gcLog.testTitle = test.title
diff --git a/packages/server/lib/browsers/utils.ts b/packages/server/lib/browsers/utils.ts
index f71f669bfdb4..7518dbb2b2ad 100644
--- a/packages/server/lib/browsers/utils.ts
+++ b/packages/server/lib/browsers/utils.ts
@@ -1,4 +1,3 @@
-/* eslint-disable no-redeclare */
 import Bluebird from 'bluebird'
 import _ from 'lodash'
 import type { FoundBrowser } from '@packages/types'
@@ -55,10 +54,10 @@ const getMajorVersion = (version) => {
 }
 
 const defaultLaunchOptions: {
-  preferences: {[key: string]: any}
+  preferences: { [key: string]: any }
   extensions: string[]
   args: string[]
-  env: {[key: string]: any}
+  env: { [key: string]: any }
 } = {
   preferences: {},
   extensions: [],
@@ -318,8 +317,8 @@ const parseBrowserOption = (opt) => {
   }
 }
 
-function ensureAndGetByNameOrPath(nameOrPath: string, returnAll: false, browsers?: FoundBrowser[]): Bluebird<FoundBrowser>
-function ensureAndGetByNameOrPath(nameOrPath: string, returnAll: true, browsers?: FoundBrowser[]): Bluebird<FoundBrowser[]>
+function ensureAndGetByNameOrPath (nameOrPath: string, returnAll: false, browsers?: FoundBrowser[]): Bluebird<FoundBrowser>
+function ensureAndGetByNameOrPath (nameOrPath: string, returnAll: true, browsers?: FoundBrowser[]): Bluebird<FoundBrowser[]>
 
 async function ensureAndGetByNameOrPath (nameOrPath: string, returnAll = false, prevKnownBrowsers: FoundBrowser[] = []) {
   const browsers = prevKnownBrowsers.length ? prevKnownBrowsers : (await getBrowsers())
diff --git a/packages/server/lib/capture.js b/packages/server/lib/capture.js
index ebffb11c561b..0681a9ae0d19 100644
--- a/packages/server/lib/capture.js
+++ b/packages/server/lib/capture.js
@@ -21,7 +21,6 @@ const stdout = function () {
     process.log = function (str) {
       logs.push(str)
 
-      // eslint-disable-next-line prefer-rest-params
       return log.apply(this, arguments)
     }
   }
@@ -29,7 +28,6 @@ const stdout = function () {
   process.stdout.write = function (str) {
     logs.push(str)
 
-    // eslint-disable-next-line prefer-rest-params
     return write.apply(this, arguments)
   }
 
diff --git a/packages/server/lib/cloud/artifacts/screenshot_artifact.ts b/packages/server/lib/cloud/artifacts/screenshot_artifact.ts
index e32c5b19978b..fefe1135035b 100644
--- a/packages/server/lib/cloud/artifacts/screenshot_artifact.ts
+++ b/packages/server/lib/cloud/artifacts/screenshot_artifact.ts
@@ -18,8 +18,8 @@ const createScreenshotArtifact = async (filePath: string, uploadUrl: string): Pr
 }
 
 export const createScreenshotArtifactBatch = (
-  screenshotUploadUrls: {screenshotId: string, uploadUrl: string}[],
-  screenshotFiles: {screenshotId: string, path: string}[],
+  screenshotUploadUrls: { screenshotId: string, uploadUrl: string }[],
+  screenshotFiles: { screenshotId: string, path: string }[],
 ): Promise<IArtifact[]> => {
   const correlatedPaths = screenshotUploadUrls.map(({ screenshotId, uploadUrl }) => {
     const correlatedFilePath = screenshotFiles.find((pathPair) => {
diff --git a/packages/server/lib/cloud/network/parse_error.ts b/packages/server/lib/cloud/network/parse_error.ts
index 7f24ad8357f0..5133f481d2c7 100644
--- a/packages/server/lib/cloud/network/parse_error.ts
+++ b/packages/server/lib/cloud/network/parse_error.ts
@@ -5,6 +5,7 @@ export class ParseError extends Error {
   constructor (public readonly originalError: Error, message?: string) {
     super(message)
   }
+
   static isParseError (err: Error & { kind: string }): err is ParseError {
     return err.kind === ParseErrorKind
   }
diff --git a/packages/server/lib/cloud/network/put_fetch.ts b/packages/server/lib/cloud/network/put_fetch.ts
index 2a6ad1c0edf6..fff457705195 100644
--- a/packages/server/lib/cloud/network/put_fetch.ts
+++ b/packages/server/lib/cloud/network/put_fetch.ts
@@ -20,8 +20,8 @@ type PutOptions = PutInit & {
   parse?: ParseKind
 }
 
-export async function putFetch <
-  TReturn extends any
+export async function putFetch<
+  TReturn,
 > (input: RequestInfo | URL, options: PutOptions = { parse: 'json' }): Promise<TReturn> {
   const {
     parse,
diff --git a/packages/server/lib/cloud/upload/stream_stalled_error.ts b/packages/server/lib/cloud/upload/stream_stalled_error.ts
index 04b8c76558a0..3e007ddfe066 100644
--- a/packages/server/lib/cloud/upload/stream_stalled_error.ts
+++ b/packages/server/lib/cloud/upload/stream_stalled_error.ts
@@ -10,7 +10,7 @@ export class StreamStalledError extends Error {
     super(`Stream stalled: failed to transfer ${chunkSizeKB} kilobytes over the previous ${maxActivityDwellTime}ms`)
   }
 
-  public static isStreamStalledError (error: Error & {kind?: any}): error is StreamStalledError {
+  public static isStreamStalledError (error: Error & { kind?: any }): error is StreamStalledError {
     return error.kind === StreamStalledErrorKind
   }
 }
diff --git a/packages/server/lib/controllers/iframes.ts b/packages/server/lib/controllers/iframes.ts
index 3c5589341456..25fc3e158636 100644
--- a/packages/server/lib/controllers/iframes.ts
+++ b/packages/server/lib/controllers/iframes.ts
@@ -61,7 +61,6 @@ export const iframesController = {
 
     nodeProxy.web(req, res, {}, (e) => {
       if (e) {
-        // eslint-disable-next-line
         debug('Proxy request error. This is likely the socket hangup issue, we can basically ignore this because the stream will automatically continue once the asset will be available', e)
       }
     })
diff --git a/packages/server/lib/modes/interactive.ts b/packages/server/lib/modes/interactive.ts
index bca0c83b11b4..bd49e1000266 100644
--- a/packages/server/lib/modes/interactive.ts
+++ b/packages/server/lib/modes/interactive.ts
@@ -10,7 +10,6 @@ import { makeGraphQLServer } from '@packages/graphql/src/makeGraphQLServer'
 import { globalPubSub, getCtx, clearCtx } from '@packages/data-context'
 import { telemetry } from '@packages/telemetry'
 
-// eslint-disable-next-line no-duplicate-imports
 import type { WebContents } from 'electron'
 import type { LaunchArgs, Preferences } from '@packages/types'
 
@@ -91,7 +90,7 @@ export = {
         y: 'appY',
         devTools: 'isAppDevToolsOpen',
       },
-      onBlur (this: {webContents: WebContents}) {
+      onBlur (this: { webContents: WebContents }) {
         if (this.webContents.isDevToolsOpened()) {
           return
         }
diff --git a/packages/server/lib/modes/results.ts b/packages/server/lib/modes/results.ts
index 9da4b263aa83..862d79931919 100644
--- a/packages/server/lib/modes/results.ts
+++ b/packages/server/lib/modes/results.ts
@@ -1,5 +1,3 @@
-/* eslint-disable @cypress/dev/arrow-body-multiline-braces */
-
 import _ from 'lodash'
 import type { FoundBrowser, SpecWithRelativeRoot } from '@packages/types'
 import path from 'path'
diff --git a/packages/server/lib/modes/run.ts b/packages/server/lib/modes/run.ts
index c3b45421c4ed..ba14b93926b0 100644
--- a/packages/server/lib/modes/run.ts
+++ b/packages/server/lib/modes/run.ts
@@ -1,4 +1,4 @@
-/* eslint-disable no-console, @cypress/dev/arrow-body-multiline-braces */
+/* eslint-disable no-console */
 import _ from 'lodash'
 import pkg from '@packages/root'
 import path from 'path'
@@ -432,7 +432,6 @@ async function listenForProjectEnd (project: ProjectBase, exit: boolean): Promis
       earlyExitTerminator.waitForEarlyExit(project, exit),
     ]).then((results) => {
       if (exit === false) {
-        // eslint-disable-next-line no-console
         console.log('not exiting due to options.exit being false')
       } else {
         resolve(results)
diff --git a/packages/server/lib/privileged-commands/privileged-channel.js b/packages/server/lib/privileged-commands/privileged-channel.js
index da9771ceebb8..5bde83fb2826 100644
--- a/packages/server/lib/privileged-commands/privileged-channel.js
+++ b/packages/server/lib/privileged-commands/privileged-channel.js
@@ -1,3 +1,4 @@
+// eslint-disable-next-line no-redeclare
 /* global window */
 (({ browserFamily, isSpecBridge, key, namespace, scripts, url, win = window, documentDomainContext }) => {
   /**
diff --git a/packages/server/lib/routes.ts b/packages/server/lib/routes.ts
index 7751f4a2b87b..3af73a799842 100644
--- a/packages/server/lib/routes.ts
+++ b/packages/server/lib/routes.ts
@@ -267,7 +267,6 @@ export const createCommonRoutes = ({
       // their own app.js files + spec.js files
       nodeProxy.web(req, res, {}, (e) => {
         if (e) {
-        // eslint-disable-next-line
         debug('Proxy request error. This is likely the socket hangup issue, we can basically ignore this because the stream will automatically continue once the asset will be available', e)
         }
       })
diff --git a/packages/server/lib/server-base.ts b/packages/server/lib/server-base.ts
index adb78406d702..cc36a2bdfbc8 100644
--- a/packages/server/lib/server-base.ts
+++ b/packages/server/lib/server-base.ts
@@ -486,7 +486,7 @@ export class ServerBase<TSocket extends SocketE2E | SocketCt> {
     return ios
   }
 
-  createHosts (hosts: {[key: string]: string} | null = {}) {
+  createHosts (hosts: { [key: string]: string } | null = {}) {
     return _.each(hosts, (ip, host) => {
       return evilDns.add(host, ip)
     })
diff --git a/packages/server/lib/socket-base.ts b/packages/server/lib/socket-base.ts
index 4ea0fc2ea616..eaa6145e045c 100644
--- a/packages/server/lib/socket-base.ts
+++ b/packages/server/lib/socket-base.ts
@@ -20,7 +20,7 @@ import runEvents from './plugins/run_events'
 import type { OTLPTraceExporterCloud } from '@packages/telemetry'
 import { telemetry } from '@packages/telemetry'
 import type { Automation } from './automation'
-// eslint-disable-next-line no-duplicate-imports
+
 import type { Socket } from '@packages/socket'
 
 import type { RunState, CachedTestState, ProtocolManagerShape } from '@packages/types'
diff --git a/packages/server/lib/util/async_retry.ts b/packages/server/lib/util/async_retry.ts
index 56d449665526..64a73b2530c5 100644
--- a/packages/server/lib/util/async_retry.ts
+++ b/packages/server/lib/util/async_retry.ts
@@ -4,9 +4,9 @@ type RetryOptions = {
   shouldRetry?: (err?: Error) => boolean
 }
 
-export function asyncRetry <
+export function asyncRetry<
   TArgs extends any[],
-  TResult extends any,
+  TResult,
 > (fn: (...args: TArgs) => Promise<TResult>, options: RetryOptions) {
   return async (...args: TArgs): Promise<TResult> => {
     let attempt = 0
diff --git a/packages/server/lib/util/ensure-url.ts b/packages/server/lib/util/ensure-url.ts
index 5b644218b67f..3e23a9c594e0 100644
--- a/packages/server/lib/util/ensure-url.ts
+++ b/packages/server/lib/util/ensure-url.ts
@@ -9,7 +9,7 @@ const debug = debugModule('cypress:server:ensure-url')
 
 type RetryOptions = {
   retryIntervals: number[]
-  onRetry(o: {delay: number, attempt: number, remaining: number}): void
+  onRetry(o: { delay: number, attempt: number, remaining: number }): void
 }
 
 export const retryIsListening = (urlStr: string, options: RetryOptions) => {
diff --git a/packages/server/lib/util/fs.ts b/packages/server/lib/util/fs.ts
index 5846acecc837..5331c894046a 100644
--- a/packages/server/lib/util/fs.ts
+++ b/packages/server/lib/util/fs.ts
@@ -1,5 +1,3 @@
-/* eslint-disable no-console */
-
 import Bluebird from 'bluebird'
 import fsExtra from 'fs-extra'
 
diff --git a/packages/server/lib/util/print-run.ts b/packages/server/lib/util/print-run.ts
index 89efc702ee33..6affbf439116 100644
--- a/packages/server/lib/util/print-run.ts
+++ b/packages/server/lib/util/print-run.ts
@@ -608,13 +608,11 @@ export const logUploadManifest = (artifacts: IArtifact[], protocolCaptureMeta: {
     [ArtifactKinds.PROTOCOL]: 'Test Replay',
   }
 
-  // eslint-disable-next-line no-console
   console.log('')
   terminal.header('Uploading Cloud Artifacts', {
     color: ['blue'],
   })
 
-  // eslint-disable-next-line no-console
   console.log('')
 
   const video = artifacts.find(({ reportKey }) => reportKey === ArtifactKinds.VIDEO)
@@ -686,14 +684,12 @@ export const logUploadResults = (results: ArtifactUploadResult[], protocolFatalE
     [ArtifactKinds.PROTOCOL]: 'Test Replay',
   }
 
-  // eslint-disable-next-line no-console
   console.log('')
 
   terminal.header('Uploaded Cloud Artifacts', {
     color: ['blue'],
   })
 
-  // eslint-disable-next-line no-console
   console.log('')
 
   results.forEach(({ key, ...report }, i, { length }) => {
diff --git a/packages/server/lib/util/stream_buffer.ts b/packages/server/lib/util/stream_buffer.ts
index b948d98fa391..1e00cb09352d 100644
--- a/packages/server/lib/util/stream_buffer.ts
+++ b/packages/server/lib/util/stream_buffer.ts
@@ -117,13 +117,16 @@ function streamBuffer (initialSize = 2048) {
 
       return readable
     }
+
     unpipeAll () {
       buffer = null // aggressive GC
       _.invokeMap(this.readers, 'unpipe')
     }
+
     _buffer () {
       return buffer
     }
+
     _finished () {
       return finished
     }
diff --git a/packages/server/package.json b/packages/server/package.json
index 7fdf051a9430..3150e0107483 100644
--- a/packages/server/package.json
+++ b/packages/server/package.json
@@ -11,7 +11,7 @@
     "dev": "node index.js",
     "docker": "cd ../.. && WORKING_DIR=/packages/server ./scripts/run-docker-local.sh",
     "postinstall": "patch-package",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "rebuild-better-sqlite3": "electron-rebuild -f -o better-sqlite3",
     "repl": "node repl.js",
     "start": "node ../../scripts/cypress open --dev --global",
diff --git a/packages/server/test/integration/cypress_spec.js b/packages/server/test/integration/cypress_spec.js
index 21a06a37ff93..911f9d9aa042 100644
--- a/packages/server/test/integration/cypress_spec.js
+++ b/packages/server/test/integration/cypress_spec.js
@@ -1,4 +1,5 @@
 /* eslint-disable no-console */
+// eslint-disable-next-line no-redeclare
 /*global globalThis*/
 require('../spec_helper')
 const _ = require('lodash')
diff --git a/packages/server/test/unit/cloud/network/put_fetch_spec.ts b/packages/server/test/unit/cloud/network/put_fetch_spec.ts
index f7f9e04bb438..17f76fd18327 100644
--- a/packages/server/test/unit/cloud/network/put_fetch_spec.ts
+++ b/packages/server/test/unit/cloud/network/put_fetch_spec.ts
@@ -41,7 +41,7 @@ describe('cloud/network/put_fetch', () => {
 
       describe('and parseJSON flag is true', () => {
         it('resolves with the parsed object', async () => {
-          const res = await fetch<{'content': string}>(url)
+          const res = await fetch<{ 'content': string }>(url)
 
           expect(res).to.eq(jsonObj)
         })
diff --git a/packages/server/test/unit/config_spec.js b/packages/server/test/unit/config_spec.js
index ed61141ae684..65a6bf76b8d9 100644
--- a/packages/server/test/unit/config_spec.js
+++ b/packages/server/test/unit/config_spec.js
@@ -890,7 +890,7 @@ describe('lib/config', () => {
 
       context('retries', () => {
         // need to keep the const here or it'll get stripped by the build
-        // eslint-disable-next-line no-unused-vars
+
         const cases = [
           [{ retries: null }, 'with null', null],
           [{ retries: 3 }, 'when a number', null],
diff --git a/packages/server/test/unit/util/suppress_warnings_spec.ts b/packages/server/test/unit/util/suppress_warnings_spec.ts
index 6e3951c1e2cf..07b1b4209aaa 100644
--- a/packages/server/test/unit/util/suppress_warnings_spec.ts
+++ b/packages/server/test/unit/util/suppress_warnings_spec.ts
@@ -40,9 +40,8 @@ describe('lib/util/suppress_warnings', function () {
 
     suppress()
 
-    // eslint-disable-next-line no-buffer-constructor
     new Buffer(0)
-    // eslint-disable-next-line no-buffer-constructor
+
     new Buffer('asdf')
 
     expect(emitWarning).not.to.be.called

From 9b12088e008d4b3e11ca121f3915d9233ccce9e7 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 15:46:44 -0500
Subject: [PATCH 067/127] packages/socket

---
 packages/socket/.eslintignore      |  1 -
 packages/socket/eslint.config.ts   | 19 +++++++++++++++++++
 packages/socket/lib/browser.ts     |  4 ++--
 packages/socket/package.json       |  2 +-
 packages/socket/test/tsconfig.json |  8 ++++++++
 5 files changed, 30 insertions(+), 4 deletions(-)
 delete mode 100644 packages/socket/.eslintignore
 create mode 100644 packages/socket/eslint.config.ts
 create mode 100644 packages/socket/test/tsconfig.json

diff --git a/packages/socket/.eslintignore b/packages/socket/.eslintignore
deleted file mode 100644
index d5857ea71fbd..000000000000
--- a/packages/socket/.eslintignore
+++ /dev/null
@@ -1 +0,0 @@
-**/tsconfig.json
diff --git a/packages/socket/eslint.config.ts b/packages/socket/eslint.config.ts
new file mode 100644
index 000000000000..8824ca8147e9
--- /dev/null
+++ b/packages/socket/eslint.config.ts
@@ -0,0 +1,19 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['index.js'],
+  },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts'],
+        },
+      },
+      globals: globals.node,
+    },
+  },
+]
diff --git a/packages/socket/lib/browser.ts b/packages/socket/lib/browser.ts
index 1ca9ccc205f1..6d7a9a16421a 100644
--- a/packages/socket/lib/browser.ts
+++ b/packages/socket/lib/browser.ts
@@ -6,7 +6,7 @@ export type { Socket } from 'socket.io-client'
 
 declare global {
   interface Window {
-    cypressSockets: {[key: string]: CDPBrowserSocket}
+    cypressSockets: { [key: string]: CDPBrowserSocket }
   }
 }
 
@@ -32,7 +32,7 @@ export function client (uri: string, opts?: Partial<ManagerOptions & SocketOptio
   return io(uri, opts)
 }
 
-export function createWebsocket ({ path, browserFamily }: { path: string, browserFamily: string}): SocketShape {
+export function createWebsocket ({ path, browserFamily }: { path: string, browserFamily: string }): SocketShape {
   if (browserFamily === 'chromium') {
     chromium = true
 
diff --git a/packages/socket/package.json b/packages/socket/package.json
index 56e99d97fbe6..0a1182fcc7c6 100644
--- a/packages/socket/package.json
+++ b/packages/socket/package.json
@@ -9,7 +9,7 @@
     "clean": "rimraf lib/*.js",
     "clean-deps": "rimraf node_modules",
     "postinstall": "patch-package",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint .",
     "test": "yarn test-unit",
     "test-debug": "yarn test-unit --inspect-brk=5566",
     "test-unit": "cross-env NODE_ENV=test mocha -r @packages/ts/register --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
diff --git a/packages/socket/test/tsconfig.json b/packages/socket/test/tsconfig.json
new file mode 100644
index 000000000000..ec187a83ccb4
--- /dev/null
+++ b/packages/socket/test/tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "../../ts/tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
\ No newline at end of file

From ecbe1f02b34e2f189c973e07535fb460ce7ad490 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 15:49:53 -0500
Subject: [PATCH 068/127] packages/telemetry

---
 packages/telemetry/eslint.config.ts           | 17 ++++++++++++++++
 packages/telemetry/package.json               |  1 +
 packages/telemetry/src/browser.ts             |  4 ++--
 packages/telemetry/src/index.ts               | 20 +++++++++++++------
 packages/telemetry/src/node.ts                |  2 +-
 .../src/span-exporters/cloud-span-exporter.ts |  5 +++--
 .../console-trace-link-exporter.ts            |  2 +-
 .../src/span-exporters/ipc-span-exporter.ts   |  2 +-
 .../span-exporters/websocket-span-exporter.ts |  2 +-
 .../detectors/circleCiDetectorSync.spec.ts    |  2 --
 .../cloud-span-exporter.spec.ts               |  2 +-
 .../console-trace-link-exporter.spec.ts       |  1 -
 packages/telemetry/test/tsconfig.json         |  8 ++++++++
 13 files changed, 50 insertions(+), 18 deletions(-)
 create mode 100644 packages/telemetry/eslint.config.ts
 create mode 100644 packages/telemetry/test/tsconfig.json

diff --git a/packages/telemetry/eslint.config.ts b/packages/telemetry/eslint.config.ts
new file mode 100644
index 000000000000..a50be8ebe2d8
--- /dev/null
+++ b/packages/telemetry/eslint.config.ts
@@ -0,0 +1,17 @@
+import { baseConfig } from '../../eslint.config'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['index.js', 'test/.mocharc.js'],
+  },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts'],
+        },
+      },
+    },
+  },
+]
diff --git a/packages/telemetry/package.json b/packages/telemetry/package.json
index be3220a65674..5aefd1ff3e1f 100644
--- a/packages/telemetry/package.json
+++ b/packages/telemetry/package.json
@@ -11,6 +11,7 @@
     "clean": "rimraf dist",
     "test": "yarn test-unit",
     "test-unit": "mocha --config ./test/.mocharc.js",
+    "lint": "eslint .",
     "tslint": "tslint --config ../ts/tslint.json --project .",
     "watch": "tsc --watch"
   },
diff --git a/packages/telemetry/src/browser.ts b/packages/telemetry/src/browser.ts
index 2391c5d5da10..8460f63dd8a7 100644
--- a/packages/telemetry/src/browser.ts
+++ b/packages/telemetry/src/browser.ts
@@ -8,7 +8,7 @@ import { OTLPTraceExporter } from './span-exporters/websocket-span-exporter'
 
 declare global {
   interface Window {
-    __CYPRESS_TELEMETRY__?: {context: {context: {traceparent: string}, attributes: Attributes}, resources: Attributes, isVerbose: boolean}
+    __CYPRESS_TELEMETRY__?: { context: { context: { traceparent: string }, attributes: Attributes }, resources: Attributes, isVerbose: boolean }
     cypressTelemetrySingleton?: TelemetryClass | TelemetryNoop
   }
 }
@@ -21,7 +21,7 @@ let telemetryInstance: TelemetryNoop | TelemetryClass = new TelemetryNoop
  * @param config - object containing the version
  * @returns void
  */
-const init = ({ namespace, config }: { namespace: string, config: {version: string}}): void => {
+const init = ({ namespace, config }: { namespace: string, config: { version: string } }): void => {
   // If we don't have cypress_telemetry setup on window don't even bother making the global instance
   if (!window.__CYPRESS_TELEMETRY__) {
     return
diff --git a/packages/telemetry/src/index.ts b/packages/telemetry/src/index.ts
index 8d0c0b4bd2d1..26cbc7b536bf 100644
--- a/packages/telemetry/src/index.ts
+++ b/packages/telemetry/src/index.ts
@@ -15,9 +15,9 @@ const environment = (process.env.CYPRESS_CONFIG_ENV || process.env.CYPRESS_INTER
 
 const SERVICE_NAME = 'cypress-app'
 
-type AttachType = typeof types[number];
+type AttachType = typeof types[number]
 
-export type contextObject = {context?: { traceparent?: string }, attributes?: Attributes}
+export type contextObject = { context?: { traceparent?: string }, attributes?: Attributes }
 
 export type startSpanOptions = {
   name: string
@@ -48,7 +48,7 @@ export interface TelemetryApi {
 
 export class Telemetry implements TelemetryApi {
   tracer: Tracer
-  spans: {[key: string]: Span}
+  spans: { [key: string]: Span }
   activeSpanQueue: Span[]
   rootContext?: Context
   rootAttributes?: Attributes
@@ -87,9 +87,9 @@ export class Telemetry implements TelemetryApi {
     const resource = Resource.default().merge(
       new Resource({
         ...resources,
-        [ SemanticResourceAttributes.SERVICE_NAME ]: SERVICE_NAME,
-        [ SemanticResourceAttributes.SERVICE_NAMESPACE ]: namespace,
-        [ SemanticResourceAttributes.SERVICE_VERSION ]: version,
+        [SemanticResourceAttributes.SERVICE_NAME]: SERVICE_NAME,
+        [SemanticResourceAttributes.SERVICE_NAMESPACE]: namespace,
+        [SemanticResourceAttributes.SERVICE_VERSION]: version,
       }),
     )
 
@@ -353,26 +353,34 @@ export class TelemetryNoop implements TelemetryApi {
   startSpan () {
     return undefined
   }
+
   getSpan () {
     return undefined
   }
+
   findActiveSpan () {
     return undefined
   }
+
   endActiveSpanAndChildren () {
     return undefined
   }
+
   getActiveContextObject (): contextObject {
     return {}
   }
+
   getResources () {
     return {}
   }
+
   shutdown () {
     return Promise.resolve()
   }
+
   getExporter () {
     return undefined
   }
+
   setRootContext () {}
 }
diff --git a/packages/telemetry/src/node.ts b/packages/telemetry/src/node.ts
index d8132e05e5e2..8e177a4c2229 100644
--- a/packages/telemetry/src/node.ts
+++ b/packages/telemetry/src/node.ts
@@ -90,7 +90,7 @@ export const telemetry = {
   exporter: (): void | OTLPTraceExporterIpc | OTLPTraceExporterCloud => telemetryInstance.getExporter() as void | OTLPTraceExporterIpc | OTLPTraceExporterCloud,
 }
 
-export const decodeTelemetryContext = (telemetryCtx: string): {context?: contextObject, version?: string} => {
+export const decodeTelemetryContext = (telemetryCtx: string): { context?: contextObject, version?: string } => {
   if (telemetryCtx) {
     return JSON.parse(
       Buffer.from(telemetryCtx, 'base64').toString('utf-8'),
diff --git a/packages/telemetry/src/span-exporters/cloud-span-exporter.ts b/packages/telemetry/src/span-exporters/cloud-span-exporter.ts
index 3dbfb06c8acd..c8e6b019263d 100644
--- a/packages/telemetry/src/span-exporters/cloud-span-exporter.ts
+++ b/packages/telemetry/src/span-exporters/cloud-span-exporter.ts
@@ -17,7 +17,7 @@ export interface OTLPExporterNodeConfigBasePlusEncryption extends OTLPExporterNo
       url: string
       method: string
       body: string
-    }) => (Promise<{jwe: string}>)
+    }) => (Promise<{ jwe: string }>)
   }
 }
 
@@ -30,10 +30,11 @@ export class OTLPTraceExporter extends OTLPTraceExporterHttp {
     onSuccess: () => void
     onError: (error: OTLPExporterError) => void
   }[]
+
   enc: OTLPExporterNodeConfigBasePlusEncryption['encryption'] | undefined
   projectId?: string
   recordKey?: string
-  requirementsToExport: 'met'| 'unmet' | 'unknown'
+  requirementsToExport: 'met' | 'unmet' | 'unknown'
   sendWithHttp: typeof sendWithHttp
   constructor (config: OTLPExporterNodeConfigBasePlusEncryption = {}) {
     super(config)
diff --git a/packages/telemetry/src/span-exporters/console-trace-link-exporter.ts b/packages/telemetry/src/span-exporters/console-trace-link-exporter.ts
index 0bfd714d703e..6c5341738813 100644
--- a/packages/telemetry/src/span-exporters/console-trace-link-exporter.ts
+++ b/packages/telemetry/src/span-exporters/console-trace-link-exporter.ts
@@ -12,7 +12,7 @@ import type { ReadableSpan, SpanExporter } from '@opentelemetry/sdk-trace-base'
 
 export class ConsoleTraceLinkExporter implements SpanExporter {
   private _traceUrl = ''
-  private _uniqueTraces: {[id: string]: string} = {}
+  private _uniqueTraces: { [id: string]: string } = {}
   // eslint-disable-next-line no-console
   private _log = console.log
 
diff --git a/packages/telemetry/src/span-exporters/ipc-span-exporter.ts b/packages/telemetry/src/span-exporters/ipc-span-exporter.ts
index 64b2c0f1654a..909fdfe6c179 100644
--- a/packages/telemetry/src/span-exporters/ipc-span-exporter.ts
+++ b/packages/telemetry/src/span-exporters/ipc-span-exporter.ts
@@ -13,7 +13,7 @@ import { OTLPTraceExporter as OTLPTraceExporterHttp } from '@opentelemetry/expor
 export class OTLPTraceExporter
   extends OTLPTraceExporterHttp {
   ipc: any
-  delayedExport: {items: ReadableSpan[], resultCallback: (result: ExportResult) => void}[]
+  delayedExport: { items: ReadableSpan[], resultCallback: (result: ExportResult) => void }[]
 
   constructor () {
     super({})
diff --git a/packages/telemetry/src/span-exporters/websocket-span-exporter.ts b/packages/telemetry/src/span-exporters/websocket-span-exporter.ts
index b16cc5e4fb19..97bb71ad61ee 100644
--- a/packages/telemetry/src/span-exporters/websocket-span-exporter.ts
+++ b/packages/telemetry/src/span-exporters/websocket-span-exporter.ts
@@ -13,7 +13,7 @@ import { OTLPTraceExporter as OTLPTraceExporterHttp } from '@opentelemetry/expor
 export class OTLPTraceExporter
   extends OTLPTraceExporterHttp {
   ws: any
-  delayedExport: {items: ReadableSpan[], resultCallback: (result: ExportResult) => void}[]
+  delayedExport: { items: ReadableSpan[], resultCallback: (result: ExportResult) => void }[]
   constructor () {
     super({})
     this.delayedExport = []
diff --git a/packages/telemetry/test/detectors/circleCiDetectorSync.spec.ts b/packages/telemetry/test/detectors/circleCiDetectorSync.spec.ts
index 90660c3cf4c3..eecaab3f9568 100644
--- a/packages/telemetry/test/detectors/circleCiDetectorSync.spec.ts
+++ b/packages/telemetry/test/detectors/circleCiDetectorSync.spec.ts
@@ -90,8 +90,6 @@ describe('circleCiDetectorSync', () => {
       it('returns a resource with attributes', () => {
         const resource = circleCiDetectorSync.detect()
 
-        console.log(resource.attributes)
-
         expect(resource.attributes['ci.circle']).to.equal('circleCi')
         expect(resource.attributes['ci.branch']).to.equal('circleBranch')
         expect(resource.attributes['ci.job']).to.equal('circleJob')
diff --git a/packages/telemetry/test/span-exporters/cloud-span-exporter.spec.ts b/packages/telemetry/test/span-exporters/cloud-span-exporter.spec.ts
index cc1c44dab802..415b497c8929 100644
--- a/packages/telemetry/test/span-exporters/cloud-span-exporter.spec.ts
+++ b/packages/telemetry/test/span-exporters/cloud-span-exporter.spec.ts
@@ -3,7 +3,7 @@ import type { ReadableSpan } from '@opentelemetry/sdk-trace-base'
 
 import { OTLPTraceExporter } from '../../src/span-exporters/cloud-span-exporter'
 
-const genericRequest = { encryption: { encryptRequest: ({ url, method, body }: {url: string, method: string, body: string}) => Promise.resolve({ jwe: 'req' }) } }
+const genericRequest = { encryption: { encryptRequest: ({ url, method, body }: { url: string, method: string, body: string }) => Promise.resolve({ jwe: 'req' }) } }
 
 describe('cloudSpanExporter', () => {
   describe('new', () => {
diff --git a/packages/telemetry/test/span-exporters/console-trace-link-exporter.spec.ts b/packages/telemetry/test/span-exporters/console-trace-link-exporter.spec.ts
index 1f24b6a59fca..9b9686f853e2 100644
--- a/packages/telemetry/test/span-exporters/console-trace-link-exporter.spec.ts
+++ b/packages/telemetry/test/span-exporters/console-trace-link-exporter.spec.ts
@@ -145,7 +145,6 @@ describe('consoleTraceLinkExporter', () => {
 
       //@ts-expect-error
       exporter._log = (...args) => {
-        console.log(args)
         expect(args[0]).to.equal('Trace end: [spanName] - https://ui.honeycomb.io/team/environments/environment/datasets/serviceName/trace?trace_id=traceId')
       }
 
diff --git a/packages/telemetry/test/tsconfig.json b/packages/telemetry/test/tsconfig.json
new file mode 100644
index 000000000000..ec187a83ccb4
--- /dev/null
+++ b/packages/telemetry/test/tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "../../ts/tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
\ No newline at end of file

From 32d1009feaf3af22827d51664fff80500f8bb0f5 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 15:50:16 -0500
Subject: [PATCH 069/127] rm old eslintrc

---
 packages/socket/test/.eslintrc.json | 5 -----
 1 file changed, 5 deletions(-)
 delete mode 100644 packages/socket/test/.eslintrc.json

diff --git a/packages/socket/test/.eslintrc.json b/packages/socket/test/.eslintrc.json
deleted file mode 100644
index b5ed5206d083..000000000000
--- a/packages/socket/test/.eslintrc.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ]
-}

From 02f97308b5ea4815ad2412d01219d8dd5db536ef Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 15:53:35 -0500
Subject: [PATCH 070/127] packages/ts

---
 packages/ts/eslint.config.ts     | 18 ++++++++++++++++++
 packages/ts/eslint.tsconfig.json | 10 ++++++++++
 packages/ts/index.d.ts           |  2 +-
 packages/ts/package.json         |  2 +-
 4 files changed, 30 insertions(+), 2 deletions(-)
 create mode 100644 packages/ts/eslint.config.ts
 create mode 100644 packages/ts/eslint.tsconfig.json

diff --git a/packages/ts/eslint.config.ts b/packages/ts/eslint.config.ts
new file mode 100644
index 000000000000..ae029139870a
--- /dev/null
+++ b/packages/ts/eslint.config.ts
@@ -0,0 +1,18 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['test/.mocharc.js', 'test/fixtures/**/*'],
+  },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: false,
+        project: './eslint.tsconfig.json',
+      },
+      globals: globals.node,
+    },
+  },
+]
diff --git a/packages/ts/eslint.tsconfig.json b/packages/ts/eslint.tsconfig.json
new file mode 100644
index 000000000000..12efecba59b4
--- /dev/null
+++ b/packages/ts/eslint.tsconfig.json
@@ -0,0 +1,10 @@
+{
+  "extends": "./tsconfig.json",
+  "include": [
+    "**/*"
+  ],
+  "compilerOptions": {
+    "allowJs": true,
+    "noEmit": true
+  }
+}
diff --git a/packages/ts/index.d.ts b/packages/ts/index.d.ts
index 7ea83365f030..a295e9780a50 100644
--- a/packages/ts/index.d.ts
+++ b/packages/ts/index.d.ts
@@ -6,7 +6,7 @@ declare module '@cypress/get-windows-proxy' {
     httpProxy: string
     noProxy: string
   }
-  function getWindowsProxy(): Optional<ProxyConfig>
+  function getWindowsProxy (): Optional<ProxyConfig>
   export = getWindowsProxy
 }
 
diff --git a/packages/ts/package.json b/packages/ts/package.json
index 3f393245a032..d76f1e76590a 100644
--- a/packages/ts/package.json
+++ b/packages/ts/package.json
@@ -7,7 +7,7 @@
     "check-ts": "tsc --noEmit",
     "clean-deps": "rimraf node_modules",
     "postinstall": "patch-package",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
+    "lint": "eslint  .",
     "test": "yarn test-unit",
     "test-unit": "node test",
     "test-watch": "echo 'no watching of tests'"

From 23dff45bb4f5f79598331c9903f37d782848753c Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 15:56:00 -0500
Subject: [PATCH 071/127] packages/types

---
 packages/types/.eslintignore    |  1 -
 packages/types/eslint.config.ts | 18 ++++++++++++++++++
 packages/types/package.json     |  2 +-
 packages/types/src/config.ts    |  2 +-
 packages/types/src/util.ts      |  2 +-
 packages/types/src/video.ts     |  2 +-
 6 files changed, 22 insertions(+), 5 deletions(-)
 delete mode 100644 packages/types/.eslintignore
 create mode 100644 packages/types/eslint.config.ts

diff --git a/packages/types/.eslintignore b/packages/types/.eslintignore
deleted file mode 100644
index d5857ea71fbd..000000000000
--- a/packages/types/.eslintignore
+++ /dev/null
@@ -1 +0,0 @@
-**/tsconfig.json
diff --git a/packages/types/eslint.config.ts b/packages/types/eslint.config.ts
new file mode 100644
index 000000000000..17fabe2c3c11
--- /dev/null
+++ b/packages/types/eslint.config.ts
@@ -0,0 +1,18 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['index.js'],
+  },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts'],
+        },
+      },
+    },
+  },
+]
diff --git a/packages/types/package.json b/packages/types/package.json
index 7d1022d35687..e1cd03e7628e 100644
--- a/packages/types/package.json
+++ b/packages/types/package.json
@@ -8,7 +8,7 @@
     "build-prod": "tsc || echo 'built, with type errors'",
     "check-ts": "tsc --noEmit",
     "clean": "rimraf src/*.js src/**/*.js",
-    "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, ."
+    "lint": "eslint ."
   },
   "dependencies": {},
   "devDependencies": {
diff --git a/packages/types/src/config.ts b/packages/types/src/config.ts
index 0c5018bbb3d5..16c89ab0e956 100644
--- a/packages/types/src/config.ts
+++ b/packages/types/src/config.ts
@@ -33,7 +33,7 @@ export type ReceivedCypressOptions =
   & Pick<Cypress.ResolvedConfigOptions, 'chromeWebSecurity' | 'supportFolder' | 'experimentalSourceRewriting' | 'fixturesFolder' | 'reporter' | 'reporterOptions' | 'screenshotsFolder' | 'supportFile' | 'baseUrl' | 'viewportHeight' | 'viewportWidth' | 'port' | 'experimentalInteractiveRunEvents' | 'userAgent' | 'downloadsFolder' | 'env' | 'excludeSpecPattern' | 'specPattern' | 'experimentalModifyObstructiveThirdPartyCode' | 'injectDocumentDomain' | 'video' | 'videoCompression' | 'videosFolder' | 'resolvedNodeVersion' | 'resolvedNodePath' | 'trashAssetsBeforeRuns' | 'experimentalWebKitSupport' | 'justInTimeCompile'> // TODO: Figure out how to type this better.
 
 export interface SettingsOptions {
-  testingType?: 'component' |'e2e'
+  testingType?: 'component' | 'e2e'
   args?: AllModeOptions
 }
 
diff --git a/packages/types/src/util.ts b/packages/types/src/util.ts
index 4b8e9066c5e1..d8c644654b0c 100644
--- a/packages/types/src/util.ts
+++ b/packages/types/src/util.ts
@@ -1 +1 @@
-export type NonNullable <T> = T extends null | undefined ? never : T
+export type NonNullable<T> = T extends null | undefined ? never : T
diff --git a/packages/types/src/video.ts b/packages/types/src/video.ts
index 2f665c4a7ab4..b524293648e6 100644
--- a/packages/types/src/video.ts
+++ b/packages/types/src/video.ts
@@ -48,7 +48,7 @@ export type RunModeVideoApi = {
   /**
    * Create+use a new VideoController that uses ffmpeg to stream frames from `writeVideoFrame` to disk.
    */
-  useFfmpegVideoController: (opts?: { webmInput?: boolean}) => Promise<BrowserVideoController>
+  useFfmpegVideoController: (opts?: { webmInput?: boolean }) => Promise<BrowserVideoController>
   /**
    * Register a non-ffmpeg video controller.
    */

From 08e12273667a7aafecd3864c529b6c9f371c4029 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 15:58:17 -0500
Subject: [PATCH 072/127] packages/v8-snapshot-require

---
 packages/v8-snapshot-require/eslint.config.ts   | 15 +++++++++++++++
 packages/v8-snapshot-require/package.json       |  1 +
 packages/v8-snapshot-require/test/tsconfig.json |  8 ++++++++
 3 files changed, 24 insertions(+)
 create mode 100644 packages/v8-snapshot-require/eslint.config.ts
 create mode 100644 packages/v8-snapshot-require/test/tsconfig.json

diff --git a/packages/v8-snapshot-require/eslint.config.ts b/packages/v8-snapshot-require/eslint.config.ts
new file mode 100644
index 000000000000..22c589b9a382
--- /dev/null
+++ b/packages/v8-snapshot-require/eslint.config.ts
@@ -0,0 +1,15 @@
+import { baseConfig } from '../../eslint.config'
+
+export default [
+  ...baseConfig,
+  { ignores: ['test/.mocharc.js'] },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts'],
+        },
+      },
+    },
+  },
+]
diff --git a/packages/v8-snapshot-require/package.json b/packages/v8-snapshot-require/package.json
index 3d7e5114cfa7..98092fc15100 100644
--- a/packages/v8-snapshot-require/package.json
+++ b/packages/v8-snapshot-require/package.json
@@ -9,6 +9,7 @@
     "check-ts": "tsc --noEmit && yarn -s tslint",
     "clean": "rimraf dist",
     "clean-deps": "rimraf node_modules",
+    "lint": "eslint .",
     "test": "yarn test-unit",
     "test-unit": "mocha --config ./test/.mocharc.js",
     "tslint": "tslint --config ../ts/tslint.json --project .",
diff --git a/packages/v8-snapshot-require/test/tsconfig.json b/packages/v8-snapshot-require/test/tsconfig.json
new file mode 100644
index 000000000000..ec187a83ccb4
--- /dev/null
+++ b/packages/v8-snapshot-require/test/tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "../../ts/tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
\ No newline at end of file

From 0d450bdc8c540f43c263654a4b27a52bb0363441 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 16:00:33 -0500
Subject: [PATCH 073/127] packages/web-config

---
 packages/web-config/eslint.config.ts       | 14 ++++++++++++++
 packages/web-config/index.d.ts             |  2 +-
 packages/web-config/package.json           |  3 +++
 packages/web-config/webpack.config.base.ts |  1 -
 4 files changed, 18 insertions(+), 2 deletions(-)
 create mode 100644 packages/web-config/eslint.config.ts

diff --git a/packages/web-config/eslint.config.ts b/packages/web-config/eslint.config.ts
new file mode 100644
index 000000000000..9315ba41996f
--- /dev/null
+++ b/packages/web-config/eslint.config.ts
@@ -0,0 +1,14 @@
+import { baseConfig } from '../../eslint.config'
+
+export default [
+  ...baseConfig,
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['node-register.js'],
+        },
+      },
+    },
+  },
+]
diff --git a/packages/web-config/index.d.ts b/packages/web-config/index.d.ts
index 1e7cc7cbe756..f13e34bcf7c1 100644
--- a/packages/web-config/index.d.ts
+++ b/packages/web-config/index.d.ts
@@ -1,2 +1,2 @@
 /// <reference path="../../cli/types/jquery/index.d.ts" />
-/// <reference path="../../cli/types/mocha/index.d.ts" />
\ No newline at end of file
+/// <reference path="../../cli/types/mocha/index.d.ts" />
diff --git a/packages/web-config/package.json b/packages/web-config/package.json
index 066ff3d28153..d2e64ee2ba05 100644
--- a/packages/web-config/package.json
+++ b/packages/web-config/package.json
@@ -1,6 +1,9 @@
 {
   "name": "@packages/web-config",
   "version": "0.0.0-development",
+  "scripts": {
+    "lint": "eslint ."
+  },
   "devDependencies": {
     "@babel/core": "7.25.2",
     "@babel/helper-define-map": "7.18.6",
diff --git a/packages/web-config/webpack.config.base.ts b/packages/web-config/webpack.config.base.ts
index cebd7656da75..725a6ccb7243 100644
--- a/packages/web-config/webpack.config.base.ts
+++ b/packages/web-config/webpack.config.base.ts
@@ -259,7 +259,6 @@ export const getCommonConfig = () => {
   return commonConfig
 }
 
-// eslint-disable-next-line @cypress/dev/arrow-body-multiline-braces
 export const getSimpleConfig = () => ({
   ignoreWarnings,
   resolve: {

From f174d7cd203d2d9acd2943052f72e0b67be40148 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 16:09:14 -0500
Subject: [PATCH 074/127] system-tests

---
 system-tests/.eslintignore                    | 30 -------------------
 system-tests/.eslintrc.json                   | 17 -----------
 system-tests/eslint.config.ts                 | 27 +++++++++++++++++
 .../lib/protocol-stubs/protocolStub.ts        |  1 +
 .../protocolStubFontFlooding.ts               |  1 +
 .../protocolStubServiceWorker.ts              |  1 +
 .../protocolStubWithBeforeSpecError.ts        |  8 +++++
 .../protocolStubWithBeforeTestError.ts        |  9 ++++++
 .../protocolStubWithMissingArchive.ts         |  1 +
 .../protocolStubWithNonFatalError.ts          |  8 +++++
 .../protocolStubWithRuntimeError.ts           |  8 +++++
 system-tests/lib/serverStub.ts                |  2 +-
 system-tests/lib/system-tests.ts              |  1 -
 system-tests/package.json                     |  2 +-
 system-tests/scripts/.eslintrc.json           |  5 ----
 .../test/no_superfluous_screenshots_spec.js   |  4 +--
 system-tests/tsconfig.json                    |  5 +++-
 17 files changed, 72 insertions(+), 58 deletions(-)
 delete mode 100644 system-tests/.eslintignore
 delete mode 100644 system-tests/.eslintrc.json
 create mode 100644 system-tests/eslint.config.ts
 delete mode 100644 system-tests/scripts/.eslintrc.json

diff --git a/system-tests/.eslintignore b/system-tests/.eslintignore
deleted file mode 100644
index 968f1fdfb325..000000000000
--- a/system-tests/.eslintignore
+++ /dev/null
@@ -1,30 +0,0 @@
-# purposeful syntax errors
-system-tests/projects/config-with-ts-module-error/cypress.config.ts
-system-tests/projects/config-with-ts-syntax-error/cypress.config.ts
-system-tests/projects/e2e/cypress/e2e/stdout_exit_early_failing.cy.js
-system-tests/projects/e2e/cypress/e2e/typescript_syntax_error.cy.ts
-system-tests/projects/e2e/lib/fail.js
-system-tests/projects/e2e/static/fail.js
-system-tests/projects/ids/cypress/e2e/dom.jsx
-system-tests/projects/no-specs/src/Invalid.jsx
-system-tests/projects/todos/tests/_fixtures/bad_js.js
-system-tests/projects/todos/tests/_fixtures/bar.js
-system-tests/projects/todos/tests/_fixtures/foo.js
-system-tests/projects/todos/tests/_fixtures/user.js
-system-tests/projects/todos/tests/_fixtures/nested/fixture.js
-system-tests/projects/todos/tests/_fixtures/no_format.js
-system-tests/projects/todos/tests/_fixtures/trailing_new_line.js
-system-tests/projects/qwik-app/cypress-ct-bad-missing-value/*
-system-tests/projects/qwik-app/cypress-ct-bad-syntax/*
-system-tests/project-fixtures/react/src/AppCompilationError.cy.jsx
-system-tests/projects/qwik-app/cypress-ct-bad-missing-value/definition.js
-system-tests/projects/outdated-deps-vuecli3
-
-# 3rd party
-system-tests/projects/e2e/static/jquery.js
-
-# snapshots
-system-tests/projects/pristine/expected-cypress-js-e2e/cypress.config.js
-system-tests/projects/pristine/expected-cypress-js-e2e-without-fixtures/cypress.config.js
-system-tests/projects/pristine-module/expected-cypress-js-e2e/cypress.config.js
-system-tests/projects/pristine-cjs-project/expected-cypress-js-component-vue.js-3-webpack/cypress.config.js
diff --git a/system-tests/.eslintrc.json b/system-tests/.eslintrc.json
deleted file mode 100644
index 42c1beed2704..000000000000
--- a/system-tests/.eslintrc.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
-  "globals": {
-    "expect": "readonly",
-    "mockery": "readonly",
-    "nock": "readonly",
-    "proxyquire": "readonly",
-    "root": "readonly",
-    "sinon": "readonly",
-    "supertest": "readonly"
-  },
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ],
-  "rules": {
-    "no-console": "off"
-  }
-}
diff --git a/system-tests/eslint.config.ts b/system-tests/eslint.config.ts
new file mode 100644
index 000000000000..03c0e66d4708
--- /dev/null
+++ b/system-tests/eslint.config.ts
@@ -0,0 +1,27 @@
+import { baseConfig } from '../eslint.config'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  { ignores: ['project-fixtures/**/*', 'projects/**/*'] },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts'],
+        },
+      },
+      globals: {
+        ...globals.node,
+        sinon: 'readonly',
+        mockery: 'readonly',
+        nock: 'readonly',
+      },
+    },
+  },
+  {
+    rules: {
+      'no-console': 'warn',
+    },
+  },
+]
diff --git a/system-tests/lib/protocol-stubs/protocolStub.ts b/system-tests/lib/protocol-stubs/protocolStub.ts
index 4800ce1a4c26..9878dbfd6f3d 100644
--- a/system-tests/lib/protocol-stubs/protocolStub.ts
+++ b/system-tests/lib/protocol-stubs/protocolStub.ts
@@ -49,6 +49,7 @@ export class AppCaptureProtocol implements AppCaptureProtocolInterface {
     responseEndedWithEmptyBody: [],
     responseStreamTimedOut: [],
   }
+
   private cdpClient: any
   private scriptToEvaluateId: any
 
diff --git a/system-tests/lib/protocol-stubs/protocolStubFontFlooding.ts b/system-tests/lib/protocol-stubs/protocolStubFontFlooding.ts
index caf4097a3bc2..d6bc448110d5 100644
--- a/system-tests/lib/protocol-stubs/protocolStubFontFlooding.ts
+++ b/system-tests/lib/protocol-stubs/protocolStubFontFlooding.ts
@@ -17,6 +17,7 @@ export class AppCaptureProtocol implements AppCaptureProtocolInterface {
   private events = {
     numberOfFontRequests: 0,
   }
+
   private cdpClient: any
 
   getDbMetadata (): { offset: number, size: number } {
diff --git a/system-tests/lib/protocol-stubs/protocolStubServiceWorker.ts b/system-tests/lib/protocol-stubs/protocolStubServiceWorker.ts
index 10d40d722251..04501bcb95ef 100644
--- a/system-tests/lib/protocol-stubs/protocolStubServiceWorker.ts
+++ b/system-tests/lib/protocol-stubs/protocolStubServiceWorker.ts
@@ -25,6 +25,7 @@ export class AppCaptureProtocol implements AppCaptureProtocolInterface {
     multipleNetworkRequestEventsForSameRequestId: false,
     exceptionThrown: false,
   }
+
   private idToUrlAndFrameMap = new Map<string, URLAndFrame>()
   private currentRequestWillBeSent: (event) => void
   private cdpClient: any
diff --git a/system-tests/lib/protocol-stubs/protocolStubWithBeforeSpecError.ts b/system-tests/lib/protocol-stubs/protocolStubWithBeforeSpecError.ts
index 3281e114cd0c..ecda6c6266c2 100644
--- a/system-tests/lib/protocol-stubs/protocolStubWithBeforeSpecError.ts
+++ b/system-tests/lib/protocol-stubs/protocolStubWithBeforeSpecError.ts
@@ -8,12 +8,15 @@ export class AppCaptureProtocol implements AppCaptureProtocolInterface {
       size: 0,
     }
   }
+
   beforeSpec ({ archivePath, db }): void {
     throw new Error('Error in beforeSpec')
   }
+
   responseStreamReceived (options: ResponseStreamOptions): Readable {
     return options.responseStream
   }
+
   addRunnables (runnables: any): void {}
   commandLogAdded (log: any): void {}
   commandLogChanged (log: any): void {}
@@ -22,18 +25,23 @@ export class AppCaptureProtocol implements AppCaptureProtocolInterface {
   beforeTest (test: Record<string, any>): Promise<void> {
     return Promise.resolve()
   }
+
   preAfterTest (test: Record<string, any>, options: Record<string, any>): Promise<void> {
     return Promise.resolve()
   }
+
   afterTest (test: Record<string, any>): Promise<void> {
     return Promise.resolve()
   }
+
   afterSpec (): Promise<void> {
     return Promise.resolve()
   }
+
   connectToBrowser (cdpClient: CDPClient): Promise<void> {
     return Promise.resolve()
   }
+
   pageLoading (input: any): void {}
   resetTest (testId: string): void {}
   responseEndedWithEmptyBody: (options: ResponseEndedWithEmptyBodyOptions) => {}
diff --git a/system-tests/lib/protocol-stubs/protocolStubWithBeforeTestError.ts b/system-tests/lib/protocol-stubs/protocolStubWithBeforeTestError.ts
index b9a36e943b76..bda903d093f6 100644
--- a/system-tests/lib/protocol-stubs/protocolStubWithBeforeTestError.ts
+++ b/system-tests/lib/protocol-stubs/protocolStubWithBeforeTestError.ts
@@ -8,12 +8,15 @@ export class AppCaptureProtocol implements AppCaptureProtocolInterface {
       size: 0,
     }
   }
+
   beforeSpec ({ archivePath, db }): void {
     //throw new Error('Error constructing AppCaptureProtocol')
   }
+
   responseStreamReceived (options: ResponseStreamOptions): Readable {
     return options.responseStream
   }
+
   addRunnables (runnables: any): void {}
   commandLogAdded (log: any): void {}
   commandLogChanged (log: any): void {}
@@ -23,27 +26,33 @@ export class AppCaptureProtocol implements AppCaptureProtocolInterface {
     return Promise.reject(new Error('error in beforeTest'))
     //return Promise.resolve()
   }
+
   preAfterTest (test: Record<string, any>, options: Record<string, any>): Promise<void> {
     //return Promise.reject(new Error('error in preAfterTest'))
 
     return Promise.resolve()
   }
+
   afterTest (test: Record<string, any>): Promise<void> {
     //return Promise.reject(new Error('error in afterTest'))
     return Promise.resolve()
   }
+
   afterSpec (): Promise<void> {
     //return Promise.reject(new Error('error in afterSpec'))
     return Promise.resolve()
   }
+
   connectToBrowser (cdpClient: CDPClient): Promise<void> {
     //return Promise.reject(new Error('error in connectToBrowser'))
     return Promise.resolve()
   }
+
   pageLoading (input: any): void {}
   resetTest (testId: string): void {}
   responseEndedWithEmptyBody (options: ResponseEndedWithEmptyBodyOptions) {
     //throw new Error('error in responseEndedWithEmptyBody')
   }
+
   responseStreamTimedOut: (options: ResponseStreamTimedOutOptions) => {}
 }
diff --git a/system-tests/lib/protocol-stubs/protocolStubWithMissingArchive.ts b/system-tests/lib/protocol-stubs/protocolStubWithMissingArchive.ts
index 8f75cd0c5110..4a8a83557953 100644
--- a/system-tests/lib/protocol-stubs/protocolStubWithMissingArchive.ts
+++ b/system-tests/lib/protocol-stubs/protocolStubWithMissingArchive.ts
@@ -31,6 +31,7 @@ export class AppCaptureProtocol implements AppCaptureProtocolInterface {
     responseEndedWithEmptyBody: [],
     responseStreamTimedOut: [],
   }
+
   private cdpClient: any
   private scriptToEvaluateId: any
   private archivePath: string | undefined
diff --git a/system-tests/lib/protocol-stubs/protocolStubWithNonFatalError.ts b/system-tests/lib/protocol-stubs/protocolStubWithNonFatalError.ts
index b0c809100066..5b25c171cfce 100644
--- a/system-tests/lib/protocol-stubs/protocolStubWithNonFatalError.ts
+++ b/system-tests/lib/protocol-stubs/protocolStubWithNonFatalError.ts
@@ -8,32 +8,40 @@ export class AppCaptureProtocol implements AppCaptureProtocolInterface {
       size: 0,
     }
   }
+
   beforeSpec ({ archivePath, db }): void {}
   responseStreamReceived (options: ResponseStreamOptions): Readable {
     return options.responseStream
   }
+
   addRunnables (runnables: any): void {}
   commandLogAdded = (log) => {
     throw new Error('Error reacting to commandLogAdded')
   }
+
   commandLogChanged (log: any): void {}
   viewportChanged (input: any): void {}
   urlChanged (input: any): void {}
   beforeTest (test: Record<string, any>): Promise<void> {
     return Promise.resolve()
   }
+
   preAfterTest (test: Record<string, any>, options: Record<string, any>): Promise<void> {
     return Promise.resolve()
   }
+
   afterTest (test: Record<string, any>): Promise<void> {
     return Promise.resolve()
   }
+
   afterSpec (): Promise<void> {
     return Promise.resolve()
   }
+
   connectToBrowser (cdpClient: CDPClient): Promise<void> {
     return Promise.resolve()
   }
+
   pageLoading (input: any): void {}
   resetTest (testId: string): void {}
   responseEndedWithEmptyBody: (options: ResponseEndedWithEmptyBodyOptions) => {}
diff --git a/system-tests/lib/protocol-stubs/protocolStubWithRuntimeError.ts b/system-tests/lib/protocol-stubs/protocolStubWithRuntimeError.ts
index d42fd2b965d6..2514c8940a2d 100644
--- a/system-tests/lib/protocol-stubs/protocolStubWithRuntimeError.ts
+++ b/system-tests/lib/protocol-stubs/protocolStubWithRuntimeError.ts
@@ -5,6 +5,7 @@ export class AppCaptureProtocol implements AppCaptureProtocolInterface {
   constructor () {
     throw new Error('Error instantiating Protocol Capture')
   }
+
   cdpReconnect (): Promise<void> {
     return Promise.resolve()
   }
@@ -12,9 +13,11 @@ export class AppCaptureProtocol implements AppCaptureProtocolInterface {
   preAfterTest (test: Record<string, any>, options: Record<string, any>): Promise<void> {
     return Promise.resolve()
   }
+
   connectToBrowser = (cdpClient) => {
     return Promise.resolve()
   }
+
   addRunnables = (runnables) => {}
   getDbMetadata (): { offset: number, size: number } {
     return {
@@ -22,16 +25,20 @@ export class AppCaptureProtocol implements AppCaptureProtocolInterface {
       size: 0,
     }
   }
+
   beforeSpec ({ archivePath, db }): void {}
   responseStreamReceived (options: ResponseStreamOptions): Readable {
     return options.responseStream
   }
+
   afterSpec = () => {
     return Promise.resolve()
   }
+
   beforeTest = (test) => {
     return Promise.resolve()
   }
+
   commandLogAdded = (log) => {}
   commandLogChanged = (log) => {}
   viewportChanged = (input) => {}
@@ -41,6 +48,7 @@ export class AppCaptureProtocol implements AppCaptureProtocolInterface {
   afterTest = (test) => {
     return Promise.resolve()
   }
+
   responseEndedWithEmptyBody: (options: ResponseEndedWithEmptyBodyOptions) => {}
   responseStreamTimedOut: (options: ResponseStreamTimedOutOptions) => {}
 }
diff --git a/system-tests/lib/serverStub.ts b/system-tests/lib/serverStub.ts
index cf40802af117..2433a631edcc 100644
--- a/system-tests/lib/serverStub.ts
+++ b/system-tests/lib/serverStub.ts
@@ -72,7 +72,7 @@ export const postRunResponseWithProtocolDisabled = (response = postRunResponse)
 
 type DeepPartial<T> = {
   [P in keyof T]?: DeepPartial<T[P]>;
-};
+}
 const sendUploadUrls = function (req, res) {
   const { body } = req
 
diff --git a/system-tests/lib/system-tests.ts b/system-tests/lib/system-tests.ts
index 1ca387987755..cf069857ebe9 100644
--- a/system-tests/lib/system-tests.ts
+++ b/system-tests/lib/system-tests.ts
@@ -859,7 +859,6 @@ const systemTests = {
         const matches = browserNameVersionRe.exec(stdout)
 
         if (matches) {
-          // eslint-disable-next-line no-unused-vars
           const [, , customBrowserPath, browserName, version, headless] = matches
 
           const { browser } = options
diff --git a/system-tests/package.json b/system-tests/package.json
index 40f9e77776fd..a4d2d384f8fb 100644
--- a/system-tests/package.json
+++ b/system-tests/package.json
@@ -8,7 +8,7 @@
   "scripts": {
     "build": "node ./scripts/scaffold.js",
     "clean-deps": "find . -depth -name node_modules -type d -exec rimraf {} \\;",
-    "lint": "eslint . --ext .js,.ts,.jsx,.tsx",
+    "lint": "eslint .",
     "preprojects:yarn:install": "yarn clean-deps",
     "projects:yarn:install": "node ./scripts/projects-yarn-install.js",
     "pretest": "yarn gulp ensureCloudValidations",
diff --git a/system-tests/scripts/.eslintrc.json b/system-tests/scripts/.eslintrc.json
deleted file mode 100644
index 74e0826b6dbb..000000000000
--- a/system-tests/scripts/.eslintrc.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  "parserOptions": {
-    "sourceType": "script"
-  }
-}
diff --git a/system-tests/test/no_superfluous_screenshots_spec.js b/system-tests/test/no_superfluous_screenshots_spec.js
index a9383faf0259..85a42d9be665 100644
--- a/system-tests/test/no_superfluous_screenshots_spec.js
+++ b/system-tests/test/no_superfluous_screenshots_spec.js
@@ -12,8 +12,8 @@ describe('no superfluous screenshots when afterEach() failed', () => {
   systemTests.it('2 screenshots', {
     spec: 'no_superfluous_screenshots.cy.js',
     onRun (exec) {
-      return exec().
-      then(() => {
+      return exec()
+      .then(() => {
         const screenshotsPath = path.join(e2ePath, 'cypress', 'screenshots', 'no_superfluous_screenshots.cy.js')
 
         return fs.readdir(screenshotsPath).then((files) => {
diff --git a/system-tests/tsconfig.json b/system-tests/tsconfig.json
index d2c2d7186adf..1fbf14c97ba4 100644
--- a/system-tests/tsconfig.json
+++ b/system-tests/tsconfig.json
@@ -3,6 +3,8 @@
   "include": [
     "test",
     "lib",
+    "test-binary",
+    "scripts",
   ],
   "files": [
     "../packages/ts/index.d.ts",
@@ -14,6 +16,7 @@
     "skipLibCheck": true,
     "noImplicitReturns": false,
     "strictNullChecks": false,
-    "typeRoots": ["../node_modules/@types"]
+    "typeRoots": ["../node_modules/@types"],
+    "allowJs": true,
   }
 }
\ No newline at end of file

From 10bdd9f66d1d5d826683788fb3ec2ed7bb1ede1c Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 16:12:20 -0500
Subject: [PATCH 075/127] tooling/electron-mksnapshot

---
 tooling/electron-mksnapshot/eslint.config.ts   | 17 +++++++++++++++++
 tooling/electron-mksnapshot/package.json       |  1 +
 tooling/electron-mksnapshot/test/tsconfig.json |  8 ++++++++
 3 files changed, 26 insertions(+)
 create mode 100644 tooling/electron-mksnapshot/eslint.config.ts
 create mode 100644 tooling/electron-mksnapshot/test/tsconfig.json

diff --git a/tooling/electron-mksnapshot/eslint.config.ts b/tooling/electron-mksnapshot/eslint.config.ts
new file mode 100644
index 000000000000..b13679b7a114
--- /dev/null
+++ b/tooling/electron-mksnapshot/eslint.config.ts
@@ -0,0 +1,17 @@
+import { baseConfig } from '../../eslint.config'
+
+export default [
+  ...baseConfig,
+  {
+    ignores: ['bin/**/*', 'test/fixtures/**/*', 'test/.mocharc.js'],
+  },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts'],
+        },
+      },
+    },
+  },
+]
diff --git a/tooling/electron-mksnapshot/package.json b/tooling/electron-mksnapshot/package.json
index 02a9d18ab834..4e2d5602ae78 100644
--- a/tooling/electron-mksnapshot/package.json
+++ b/tooling/electron-mksnapshot/package.json
@@ -9,6 +9,7 @@
     "check-ts": "tsc --noEmit",
     "clean": "rimraf dist",
     "clean-deps": "rimraf node_modules",
+    "lint": "eslint .",
     "test": "yarn test-unit",
     "test-integration": "mocha test/integration/**/*.spec.ts --config ./test/.mocharc.js",
     "test-unit": "mocha test/unit/**/*.spec.ts --config ./test/.mocharc.js",
diff --git a/tooling/electron-mksnapshot/test/tsconfig.json b/tooling/electron-mksnapshot/test/tsconfig.json
new file mode 100644
index 000000000000..fd5c47307046
--- /dev/null
+++ b/tooling/electron-mksnapshot/test/tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "../../../packages/ts/tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
\ No newline at end of file

From 7d4875051052617607f63043979867936c1ae188 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 16:12:31 -0500
Subject: [PATCH 076/127] rm old eslintrc

---
 packages/server/test/.eslintrc.json | 14 --------------
 1 file changed, 14 deletions(-)
 delete mode 100644 packages/server/test/.eslintrc.json

diff --git a/packages/server/test/.eslintrc.json b/packages/server/test/.eslintrc.json
deleted file mode 100644
index f8d37d4d41b0..000000000000
--- a/packages/server/test/.eslintrc.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
-  "globals": {
-    "expect": "readonly",
-    "mockery": "readonly",
-    "nock": "readonly",
-    "proxyquire": "readonly",
-    "root": "readonly",
-    "sinon": "readonly",
-    "supertest": "readonly"
-  },
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ]
-}

From 643e17c647f1f5b1d61b6e0d2e9c56f1b6a7187b Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 16:14:31 -0500
Subject: [PATCH 077/127] tooling/packherd

---
 tooling/packherd/eslint.config.ts   | 15 +++++++++++++++
 tooling/packherd/package.json       |  1 +
 tooling/packherd/test/tsconfig.json |  8 ++++++++
 3 files changed, 24 insertions(+)
 create mode 100644 tooling/packherd/eslint.config.ts
 create mode 100644 tooling/packherd/test/tsconfig.json

diff --git a/tooling/packherd/eslint.config.ts b/tooling/packherd/eslint.config.ts
new file mode 100644
index 000000000000..22c589b9a382
--- /dev/null
+++ b/tooling/packherd/eslint.config.ts
@@ -0,0 +1,15 @@
+import { baseConfig } from '../../eslint.config'
+
+export default [
+  ...baseConfig,
+  { ignores: ['test/.mocharc.js'] },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts'],
+        },
+      },
+    },
+  },
+]
diff --git a/tooling/packherd/package.json b/tooling/packherd/package.json
index 2cee9c8427ae..3f7713771b47 100644
--- a/tooling/packherd/package.json
+++ b/tooling/packherd/package.json
@@ -9,6 +9,7 @@
     "check-ts": "tsc --noEmit",
     "clean": "rimraf dist",
     "clean-deps": "rimraf node_modules",
+    "lint": "eslint .",
     "test": "yarn test-integration",
     "test-integration": "mocha --config ./test/.mocharc.js",
     "watch": "tsc --watch"
diff --git a/tooling/packherd/test/tsconfig.json b/tooling/packherd/test/tsconfig.json
new file mode 100644
index 000000000000..fd5c47307046
--- /dev/null
+++ b/tooling/packherd/test/tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "../../../packages/ts/tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
\ No newline at end of file

From ca7441ac14b2cd8e58646df6f8ced8b03fcaf5de Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 16:20:36 -0500
Subject: [PATCH 078/127] tooling/v8-snapshot

---
 tooling/v8-snapshot/eslint.config.ts          | 19 +++++++++++++++
 tooling/v8-snapshot/package.json              |  1 +
 .../src/blueprint/custom-require.js           | 24 ++++++++-----------
 tooling/v8-snapshot/src/blueprint/globals.js  |  5 ----
 .../v8-snapshot/src/blueprint/set-globals.js  |  3 +--
 tooling/v8-snapshot/test/tsconfig.json        |  8 +++++++
 6 files changed, 39 insertions(+), 21 deletions(-)
 create mode 100644 tooling/v8-snapshot/eslint.config.ts
 create mode 100644 tooling/v8-snapshot/test/tsconfig.json

diff --git a/tooling/v8-snapshot/eslint.config.ts b/tooling/v8-snapshot/eslint.config.ts
new file mode 100644
index 000000000000..a25d13f2c726
--- /dev/null
+++ b/tooling/v8-snapshot/eslint.config.ts
@@ -0,0 +1,19 @@
+import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
+
+export default [
+  ...baseConfig,
+  { ignores: ['test/.mocharc.js', '__snapshots__/**/*', 'cache/**/*', 'test/fixtures/**/*'] },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts', 'scripts/setup-v8-snapshot-in-cypress.js'],
+        },
+      },
+      globals: {
+        ...globals.node,
+      },
+    },
+  },
+]
diff --git a/tooling/v8-snapshot/package.json b/tooling/v8-snapshot/package.json
index 84aac15e3ca4..6f6ba091110d 100644
--- a/tooling/v8-snapshot/package.json
+++ b/tooling/v8-snapshot/package.json
@@ -9,6 +9,7 @@
     "check-ts": "tsc --noEmit",
     "clean": "rimraf dist",
     "clean-deps": "rimraf node_modules",
+    "lint": "eslint .",
     "test": "yarn test-unit",
     "test-integration": "mocha test/integration/**/*.spec.ts --config ./test/.mocharc.js",
     "test-unit": "mocha test/unit/**/*.spec.ts --config ./test/.mocharc.js",
diff --git a/tooling/v8-snapshot/src/blueprint/custom-require.js b/tooling/v8-snapshot/src/blueprint/custom-require.js
index f69ffc9412f2..2f64b6cee3f8 100644
--- a/tooling/v8-snapshot/src/blueprint/custom-require.js
+++ b/tooling/v8-snapshot/src/blueprint/custom-require.js
@@ -286,22 +286,18 @@ function createResolveOpts (relFilename, relDirname) {
  * @returns result of invoking `require.resolve` with enhanced info
  */
 customRequire.resolve = function (mod, ...args) {
-  try {
-    // Handle the case where args is { paths: string[] }. The module is expected to be outside of the cypress snapshot.
-    if (args.length === 0 || (args[0] != null && typeof args[0] !== 'string')) {
-      return require.resolve(mod, ...args)
-    }
+  // Handle the case where args is { paths: string[] }. The module is expected to be outside of the cypress snapshot.
+  if (args.length === 0 || (args[0] != null && typeof args[0] !== 'string')) {
+    return require.resolve(mod, ...args)
+  }
 
-    const [relFilename = null, relDirname = null] = args
-    const opts =
-      relFilename != null && relDirname != null
-        ? createResolveOpts(relFilename, relDirname)
-        : undefined
+  const [relFilename = null, relDirname = null] = args
+  const opts =
+    relFilename != null && relDirname != null
+      ? createResolveOpts(relFilename, relDirname)
+      : undefined
 
-    return require.resolve(mod, opts)
-  } catch (err) {
-    throw err
-  }
+  return require.resolve(mod, opts)
 }
 
 //
diff --git a/tooling/v8-snapshot/src/blueprint/globals.js b/tooling/v8-snapshot/src/blueprint/globals.js
index a069a2308cb1..bb92936ad577 100644
--- a/tooling/v8-snapshot/src/blueprint/globals.js
+++ b/tooling/v8-snapshot/src/blueprint/globals.js
@@ -45,7 +45,6 @@ Object.defineProperties(document, {
   },
 })
 
-// eslint-disable-next-line no-unused-vars
 function get_document () {
   return document
 }
@@ -71,7 +70,6 @@ Object.defineProperties(global, {
   },
 })
 
-// eslint-disable-next-line no-unused-vars
 function get_global () {
   return global
 } // Globally visible function and constructor names that are available in an Electron renderer window, but not visible
@@ -828,7 +826,6 @@ Object.defineProperties(window, {
   },
 })
 
-// eslint-disable-next-line no-unused-vars
 function get_window () {
   return window
 }
@@ -872,7 +869,6 @@ Object.defineProperties(console, {
   },
 })
 
-// eslint-disable-next-line no-unused-vars
 function get_console () {
   return console
 }
@@ -891,7 +887,6 @@ Object.defineProperties(__pathResolver, {
   },
 })
 
-// eslint-disable-next-line no-unused-vars
 function __resolve_path (dir) {
   return __pathResolver.resolve(dir)
 }
diff --git a/tooling/v8-snapshot/src/blueprint/set-globals.js b/tooling/v8-snapshot/src/blueprint/set-globals.js
index 799b86b0f1cb..932c171aa2b8 100644
--- a/tooling/v8-snapshot/src/blueprint/set-globals.js
+++ b/tooling/v8-snapshot/src/blueprint/set-globals.js
@@ -1,4 +1,4 @@
-// eslint-disable-next-line no-unused-vars
+//eslint-disable-next-line no-redeclare
 /* globals globalFunctionTrampoline, window, document, __pathResolver */
 
 /**
@@ -6,7 +6,6 @@
  * instances that are present in the app on startup.
  */
 
-// eslint-disable-next-line no-unused-vars
 (function () {
   let numberOfSetGlobalsCalls = 0
 
diff --git a/tooling/v8-snapshot/test/tsconfig.json b/tooling/v8-snapshot/test/tsconfig.json
new file mode 100644
index 000000000000..fd5c47307046
--- /dev/null
+++ b/tooling/v8-snapshot/test/tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "../../../packages/ts/tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
\ No newline at end of file

From add6226e853c1a5732e2e89b29d03eda7e628712 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 16:23:22 -0500
Subject: [PATCH 079/127] delete unnecessary eslintrc.json

---
 cli/test/.eslintrc.json                       |  9 -----
 .../test/.eslintrc.json                       | 23 -----------
 npm/webpack-preprocessor/test/.eslintrc.json  |  5 ---
 packages/driver/cypress/.eslintrc.json        | 14 -------
 packages/electron/test/.eslintrc.json         |  5 ---
 packages/https-proxy/test/.eslintrc.json      |  5 ---
 packages/reporter/cypress/.eslintrc.json      | 11 -----
 packages/runner/injection/.eslintrc.json      |  6 ---
 packages/runner/src/.eslintrc.json            | 11 -----
 packages/server/test/scripts/.eslintrc.json   |  5 ---
 scripts/unit/.eslintrc.json                   |  5 ---
 system-tests/project-fixtures/.eslintrc.json  | 11 -----
 system-tests/projects/.eslintrc.json          | 15 -------
 .../cypress-in-cypress/.eslintrc.json         | 40 -------------------
 .../projects/ids/cypress/.eslintrc.json       | 25 ------------
 15 files changed, 190 deletions(-)
 delete mode 100644 cli/test/.eslintrc.json
 delete mode 100644 npm/webpack-batteries-included-preprocessor/test/.eslintrc.json
 delete mode 100644 npm/webpack-preprocessor/test/.eslintrc.json
 delete mode 100644 packages/driver/cypress/.eslintrc.json
 delete mode 100644 packages/electron/test/.eslintrc.json
 delete mode 100644 packages/https-proxy/test/.eslintrc.json
 delete mode 100644 packages/reporter/cypress/.eslintrc.json
 delete mode 100644 packages/runner/injection/.eslintrc.json
 delete mode 100644 packages/runner/src/.eslintrc.json
 delete mode 100644 packages/server/test/scripts/.eslintrc.json
 delete mode 100644 scripts/unit/.eslintrc.json
 delete mode 100644 system-tests/project-fixtures/.eslintrc.json
 delete mode 100644 system-tests/projects/.eslintrc.json
 delete mode 100644 system-tests/projects/cypress-in-cypress/.eslintrc.json
 delete mode 100644 system-tests/projects/ids/cypress/.eslintrc.json

diff --git a/cli/test/.eslintrc.json b/cli/test/.eslintrc.json
deleted file mode 100644
index 722558a67462..000000000000
--- a/cli/test/.eslintrc.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-  "globals": {
-    "lib": true,
-    "sinon": true
-  },
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ]
-}
diff --git a/npm/webpack-batteries-included-preprocessor/test/.eslintrc.json b/npm/webpack-batteries-included-preprocessor/test/.eslintrc.json
deleted file mode 100644
index 1d9d2fefe4b9..000000000000
--- a/npm/webpack-batteries-included-preprocessor/test/.eslintrc.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
-  "extends": [
-    "plugin:@cypress/dev/tests",
-    "plugin:@cypress/dev/react"
-  ],
-  "rules": {
-    "mocha/no-global-tests": "off",
-    "react/jsx-filename-extension": [
-      "error",
-      {
-        "extensions": [
-          ".jsx",
-          ".tsx"
-        ]
-      }
-    ]
-  },
-  "settings": {
-    "react": {
-      "version": "detect"
-    }
-  }
-}
diff --git a/npm/webpack-preprocessor/test/.eslintrc.json b/npm/webpack-preprocessor/test/.eslintrc.json
deleted file mode 100644
index b5ed5206d083..000000000000
--- a/npm/webpack-preprocessor/test/.eslintrc.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ]
-}
diff --git a/packages/driver/cypress/.eslintrc.json b/packages/driver/cypress/.eslintrc.json
deleted file mode 100644
index 9b012d59420f..000000000000
--- a/packages/driver/cypress/.eslintrc.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
-  "plugins": [
-    "cypress"
-  ],
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ],
-  "env": {
-    "cypress/globals": true
-  },
-  "rules": {
-    "mocha/no-global-tests": "off"
-  }
-}
diff --git a/packages/electron/test/.eslintrc.json b/packages/electron/test/.eslintrc.json
deleted file mode 100644
index b5ed5206d083..000000000000
--- a/packages/electron/test/.eslintrc.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ]
-}
diff --git a/packages/https-proxy/test/.eslintrc.json b/packages/https-proxy/test/.eslintrc.json
deleted file mode 100644
index b5ed5206d083..000000000000
--- a/packages/https-proxy/test/.eslintrc.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ]
-}
diff --git a/packages/reporter/cypress/.eslintrc.json b/packages/reporter/cypress/.eslintrc.json
deleted file mode 100644
index 16184dd4a3e4..000000000000
--- a/packages/reporter/cypress/.eslintrc.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ],
-  "plugins": [
-    "cypress"
-  ],
-  "env": {
-    "cypress/globals": true
-  }
-}
diff --git a/packages/runner/injection/.eslintrc.json b/packages/runner/injection/.eslintrc.json
deleted file mode 100644
index 12aab8bb5098..000000000000
--- a/packages/runner/injection/.eslintrc.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
-  "globals": {
-    "window": true,
-    "parent": true
-  }
-}
diff --git a/packages/runner/src/.eslintrc.json b/packages/runner/src/.eslintrc.json
deleted file mode 100644
index 5849f1c5bafe..000000000000
--- a/packages/runner/src/.eslintrc.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
-  "extends": [
-    "plugin:@cypress/dev/react",
-    "plugin:@cypress/dev/tests"
-  ],
-  "settings": {
-    "react": {
-      "version": "16.12"
-    }
-  }
-}
diff --git a/packages/server/test/scripts/.eslintrc.json b/packages/server/test/scripts/.eslintrc.json
deleted file mode 100644
index 74e0826b6dbb..000000000000
--- a/packages/server/test/scripts/.eslintrc.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  "parserOptions": {
-    "sourceType": "script"
-  }
-}
diff --git a/scripts/unit/.eslintrc.json b/scripts/unit/.eslintrc.json
deleted file mode 100644
index b5ed5206d083..000000000000
--- a/scripts/unit/.eslintrc.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  "extends": [
-    "plugin:@cypress/dev/tests"
-  ]
-}
diff --git a/system-tests/project-fixtures/.eslintrc.json b/system-tests/project-fixtures/.eslintrc.json
deleted file mode 100644
index 03c9a6df3e71..000000000000
--- a/system-tests/project-fixtures/.eslintrc.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
-  "plugins": [
-    "cypress"
-  ],
-  "env": {
-    "cypress/globals": true
-  },
-  "rules": {
-    "mocha/no-global-tests": "off"
-  }
-}
diff --git a/system-tests/projects/.eslintrc.json b/system-tests/projects/.eslintrc.json
deleted file mode 100644
index c6eb74761352..000000000000
--- a/system-tests/projects/.eslintrc.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
-  "plugins": [
-    "cypress"
-  ],
-  "env": {
-    "cypress/globals": true
-  },
-  "rules": {
-    "mocha/no-global-tests": "off"
-  },
-  "ignorePatterns": [
-    "failures/cypress/e2e/syntax_error.js",
-    "plugins-root-syntax-error/cypress.config.js"
-  ]
-}
diff --git a/system-tests/projects/cypress-in-cypress/.eslintrc.json b/system-tests/projects/cypress-in-cypress/.eslintrc.json
deleted file mode 100644
index 55c945ea6f2f..000000000000
--- a/system-tests/projects/cypress-in-cypress/.eslintrc.json
+++ /dev/null
@@ -1,40 +0,0 @@
-{
-  "globals": {
-    "defineProps": "readonly",
-    "defineEmits": "readonly",
-    "defineExpose": "readonly",
-    "withDefaults": "readonly"
-  },
-  "plugins": [
-    "cypress",
-    "@cypress/dev"
-  ],
-  "extends": [
-    "../../../packages/frontend-shared/.eslintrc.json"
-  ],
-  "env": {
-    "cypress/globals": true
-  },
-  "overrides": [
-    {
-      "files": [
-        "*.ts"
-      ],
-      "rules": {
-        "no-dupe-class-members": "off",
-        "@typescript-eslint/no-dupe-class-members": "error"
-      }
-    },
-    {
-      "files": [
-        "*.tsx",
-        "*.jsx"
-      ],
-      "rules": {
-        "react/jsx-no-bind": "off",
-        "react/react-in-jsx-scope": "off",
-        "react/no-unknown-property": "off"
-      }
-    }
-  ]
-}
diff --git a/system-tests/projects/ids/cypress/.eslintrc.json b/system-tests/projects/ids/cypress/.eslintrc.json
deleted file mode 100644
index 3579c4a6366c..000000000000
--- a/system-tests/projects/ids/cypress/.eslintrc.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
-  "extends": [
-    "plugin:@cypress/dev/react",
-    "plugin:@cypress/dev/tests"
-  ],
-  "parser": "@typescript-eslint/parser",
-  "settings": {
-    "react": {
-      "version": "16.8"
-    }
-  },
-  "rules": {
-    "no-unused-vars": "off",
-    "react/jsx-filename-extension": [
-      "warn",
-      {
-        "extensions": [
-          ".js",
-          ".jsx",
-          ".tsx"
-        ]
-      }
-    ]
-  }
-}

From 3e35bce625eca2318f6df48c27f73738211face3 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 16:26:45 -0500
Subject: [PATCH 080/127] fix mount-utils eslint config

---
 npm/mount-utils/eslint.config.ts | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/npm/mount-utils/eslint.config.ts b/npm/mount-utils/eslint.config.ts
index e8a3f34babbb..382931b53e4c 100644
--- a/npm/mount-utils/eslint.config.ts
+++ b/npm/mount-utils/eslint.config.ts
@@ -3,4 +3,13 @@ import globals from 'globals'
 
 export default [
   ...baseConfig,
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts', 'create-rollup-entry.mjs'],
+        },
+      },
+    },
+  },
 ]

From 7b44b5669f4a66e8f3475b9642d539d615814037 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 16:29:47 -0500
Subject: [PATCH 081/127] fix webpack-preprocessor eslint.config.ts

---
 npm/webpack-preprocessor/cypress/tsconfig.json | 8 ++++++++
 npm/webpack-preprocessor/eslint.config.ts      | 7 ++++++-
 npm/webpack-preprocessor/test/tsconfig.json    | 8 ++++++++
 3 files changed, 22 insertions(+), 1 deletion(-)
 create mode 100644 npm/webpack-preprocessor/cypress/tsconfig.json
 create mode 100644 npm/webpack-preprocessor/test/tsconfig.json

diff --git a/npm/webpack-preprocessor/cypress/tsconfig.json b/npm/webpack-preprocessor/cypress/tsconfig.json
new file mode 100644
index 000000000000..8752f2608138
--- /dev/null
+++ b/npm/webpack-preprocessor/cypress/tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "../../../ts/tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
\ No newline at end of file
diff --git a/npm/webpack-preprocessor/eslint.config.ts b/npm/webpack-preprocessor/eslint.config.ts
index 41fa2d3a7258..971930bf3970 100644
--- a/npm/webpack-preprocessor/eslint.config.ts
+++ b/npm/webpack-preprocessor/eslint.config.ts
@@ -4,10 +4,15 @@ import globals from 'globals'
 export default [
   ...baseConfig,
   {
-    ignores: ['__snapshots__/**/*', 'cypress/tests/e2e/compile-error.js', 'test/fixtures/syntax_error_spec.js'],
+    ignores: ['__snapshots__/**/*', 'cypress/tests/e2e/compile-error.js', 'test/fixtures/**/*'],
   },
   {
     languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['cypress.config.js', 'scripts/test-webpack-5.js'],
+        },
+      },
       globals: {
         ...globals.node,
       },
diff --git a/npm/webpack-preprocessor/test/tsconfig.json b/npm/webpack-preprocessor/test/tsconfig.json
new file mode 100644
index 000000000000..8752f2608138
--- /dev/null
+++ b/npm/webpack-preprocessor/test/tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "../../../ts/tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
\ No newline at end of file

From 63a0d72ec810643bcb6054a0691f83489293fc70 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 16:35:03 -0500
Subject: [PATCH 082/127] fix puppeteer eslint

---
 npm/puppeteer/cypress/tsconfig.json |  4 ++--
 npm/puppeteer/eslint.config.ts      | 16 +++++++++++++++-
 npm/puppeteer/test/tsconfig.json    |  8 ++++++++
 npm/puppeteer/tsconfig.json         |  1 +
 4 files changed, 26 insertions(+), 3 deletions(-)
 create mode 100644 npm/puppeteer/test/tsconfig.json

diff --git a/npm/puppeteer/cypress/tsconfig.json b/npm/puppeteer/cypress/tsconfig.json
index ea3daa2c3185..a93c15c15b5b 100644
--- a/npm/puppeteer/cypress/tsconfig.json
+++ b/npm/puppeteer/cypress/tsconfig.json
@@ -2,10 +2,10 @@
   "compilerOptions": {
     "types": [
       "cypress"
-    ]
+    ],
   },
   "include": [
     "../index.d.ts",
-    "e2e/**/*.ts"
+    "**/*.ts"
   ]
 }
diff --git a/npm/puppeteer/eslint.config.ts b/npm/puppeteer/eslint.config.ts
index 8b9636ce36e2..1c793df8c79a 100644
--- a/npm/puppeteer/eslint.config.ts
+++ b/npm/puppeteer/eslint.config.ts
@@ -1,3 +1,17 @@
 import { baseConfig } from '../../eslint.config'
 
-export default baseConfig
+export default [
+  ...baseConfig,
+  {
+    ignores: ['support/index.js'],
+  },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts', 'cypress.config.ts'],
+        },
+      },
+    },
+  },
+]
diff --git a/npm/puppeteer/test/tsconfig.json b/npm/puppeteer/test/tsconfig.json
new file mode 100644
index 000000000000..ec187a83ccb4
--- /dev/null
+++ b/npm/puppeteer/test/tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "../../ts/tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
\ No newline at end of file
diff --git a/npm/puppeteer/tsconfig.json b/npm/puppeteer/tsconfig.json
index faec3a8532de..adca16b2317f 100644
--- a/npm/puppeteer/tsconfig.json
+++ b/npm/puppeteer/tsconfig.json
@@ -1,6 +1,7 @@
 {
   "compilerOptions": {
     "alwaysStrict": true,
+    "allowJs": true,
     "declaration": true,
     "esModuleInterop": true,
     "forceConsistentCasingInFileNames": true,

From 2e1415448edd04f205c5323f8aa65cba65e85f52 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 16:38:39 -0500
Subject: [PATCH 083/127] fix svelte eslint config

---
 npm/svelte/eslint.config.ts | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/npm/svelte/eslint.config.ts b/npm/svelte/eslint.config.ts
index 740023207080..ca64c1379f96 100644
--- a/npm/svelte/eslint.config.ts
+++ b/npm/svelte/eslint.config.ts
@@ -4,9 +4,12 @@ import globals from 'globals'
 export default [
   ...baseConfig,
   {
-    files: ['src/mount.ts'],
-    rules: {
-      'cypress/no-unnecessary-waiting': 'warn',
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts', 'rollup.config.mjs'],
+        },
+      },
     },
   },
 ]

From 9462fc5513d305dd718f70c76abf2f8113a862c6 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 16:41:50 -0500
Subject: [PATCH 084/127] fix vite-plugin-cypress-esm eslint config

---
 npm/vite-plugin-cypress-esm/client/moduleCache.js |  1 +
 npm/vite-plugin-cypress-esm/cypress/tsconfig.json | 10 ++++++++++
 npm/vite-plugin-cypress-esm/eslint.config.ts      | 12 ++++++++++++
 3 files changed, 23 insertions(+)
 create mode 100644 npm/vite-plugin-cypress-esm/cypress/tsconfig.json

diff --git a/npm/vite-plugin-cypress-esm/client/moduleCache.js b/npm/vite-plugin-cypress-esm/client/moduleCache.js
index 20c905bcda06..831655630228 100644
--- a/npm/vite-plugin-cypress-esm/client/moduleCache.js
+++ b/npm/vite-plugin-cypress-esm/client/moduleCache.js
@@ -175,6 +175,7 @@ function log (msg) {
   if (!debug) {
     return
   }
+
   // eslint-disable-next-line no-console
   console.log(`[cypress:vite-plugin-cypress-esm]: ${msg}`)
 }
diff --git a/npm/vite-plugin-cypress-esm/cypress/tsconfig.json b/npm/vite-plugin-cypress-esm/cypress/tsconfig.json
new file mode 100644
index 000000000000..075cd2f57de9
--- /dev/null
+++ b/npm/vite-plugin-cypress-esm/cypress/tsconfig.json
@@ -0,0 +1,10 @@
+{
+  "compilerOptions": {
+    "types": [
+      "cypress"
+    ],
+  },
+  "include": [
+    "**/*",
+  ]
+}
diff --git a/npm/vite-plugin-cypress-esm/eslint.config.ts b/npm/vite-plugin-cypress-esm/eslint.config.ts
index 8c91f1e0c081..b34b365f9a9d 100644
--- a/npm/vite-plugin-cypress-esm/eslint.config.ts
+++ b/npm/vite-plugin-cypress-esm/eslint.config.ts
@@ -2,4 +2,16 @@ import { baseConfig } from '../../eslint.config'
 
 export default [
   ...baseConfig,
+  {
+    ignores: ['index.d.ts', 'index.js'],
+  },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts', 'cypress.config.ts', 'client/moduleCache.js'],
+        },
+      },
+    },
+  },
 ]

From b264d907a60765f56611e5ad19bcb5595517348d Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 16:46:54 -0500
Subject: [PATCH 085/127] grep eslint fix

---
 npm/grep/cypress/tsconfig.json | 5 +++--
 npm/grep/eslint.config.ts      | 1 +
 npm/grep/tsconfig.json         | 8 ++++++++
 3 files changed, 12 insertions(+), 2 deletions(-)
 create mode 100644 npm/grep/tsconfig.json

diff --git a/npm/grep/cypress/tsconfig.json b/npm/grep/cypress/tsconfig.json
index d6ad99370558..8a588d18f5ce 100644
--- a/npm/grep/cypress/tsconfig.json
+++ b/npm/grep/cypress/tsconfig.json
@@ -1,6 +1,7 @@
 {
   "compilerOptions": {
-    "types": ["cypress"]
+    "types": ["cypress"],
+    "allowJs": true,
   },
-  "include": ["e2e/**/*.ts"]
+  "include": ["**/*"]
 }
diff --git a/npm/grep/eslint.config.ts b/npm/grep/eslint.config.ts
index 0d0482492336..d2ba9438a79d 100644
--- a/npm/grep/eslint.config.ts
+++ b/npm/grep/eslint.config.ts
@@ -1,5 +1,6 @@
 import { baseConfig } from '../../eslint.config'
 import globals from 'globals'
+
 export default [
   ...baseConfig,
   {
diff --git a/npm/grep/tsconfig.json b/npm/grep/tsconfig.json
new file mode 100644
index 000000000000..d79b0d947c6b
--- /dev/null
+++ b/npm/grep/tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "../../packages/ts/tsconfig.json",
+  "include": "**/*",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true,
+  }
+}
\ No newline at end of file

From 1d1d61c6c1ba29ad84977b22f559b205bca0b3e1 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 16:49:39 -0500
Subject: [PATCH 086/127] fix webpack-batteries eslint config

---
 .../eslint.config.ts                                      | 6 ++++++
 .../test/tsconfig.json                                    | 8 ++++++++
 2 files changed, 14 insertions(+)
 create mode 100644 npm/webpack-batteries-included-preprocessor/test/tsconfig.json

diff --git a/npm/webpack-batteries-included-preprocessor/eslint.config.ts b/npm/webpack-batteries-included-preprocessor/eslint.config.ts
index 751f84b2ae2d..a0b4c1c07563 100644
--- a/npm/webpack-batteries-included-preprocessor/eslint.config.ts
+++ b/npm/webpack-batteries-included-preprocessor/eslint.config.ts
@@ -3,8 +3,14 @@ import globals from 'globals'
 
 export default [
   ...baseConfig,
+  { ignores: ['test/fixtures/**/*', 'index.js'] },
   {
   languageOptions: {
+    parserOptions: {
+      projectService: {
+        allowDefaultProject: ['eslint.config.ts'],
+      },
+    },
     globals: {
       ...globals.node,
     },
diff --git a/npm/webpack-batteries-included-preprocessor/test/tsconfig.json b/npm/webpack-batteries-included-preprocessor/test/tsconfig.json
new file mode 100644
index 000000000000..7f572ef2f7a8
--- /dev/null
+++ b/npm/webpack-batteries-included-preprocessor/test/tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "../../../../packages/ts/tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
\ No newline at end of file

From 9ec71b5793da16bf894b8282ac6c6050caa993ab Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 16:50:42 -0500
Subject: [PATCH 087/127] fix schematic

---
 npm/cypress-schematic/package.json                              | 2 +-
 .../src/schematics/ng-generate/cypress-test/index.ts            | 1 +
 npm/cypress-schematic/src/schematics/utils/index.ts             | 1 +
 3 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/npm/cypress-schematic/package.json b/npm/cypress-schematic/package.json
index 2af4628482e2..5dd6750b1a35 100644
--- a/npm/cypress-schematic/package.json
+++ b/npm/cypress-schematic/package.json
@@ -6,7 +6,7 @@
   "scripts": {
     "build": "tsc -p tsconfig.json",
     "build:watch": "tsc -p tsconfig.json --watch",
-    "lint": "eslint --ext .ts,.json, .",
+    "lint": "eslint .",
     "test": "vitest run --no-file-parallelism"
   },
   "dependencies": {
diff --git a/npm/cypress-schematic/src/schematics/ng-generate/cypress-test/index.ts b/npm/cypress-schematic/src/schematics/ng-generate/cypress-test/index.ts
index 10a8ac2895d6..6200e9ef7ea7 100644
--- a/npm/cypress-schematic/src/schematics/ng-generate/cypress-test/index.ts
+++ b/npm/cypress-schematic/src/schematics/ng-generate/cypress-test/index.ts
@@ -56,6 +56,7 @@ export default function (options: Schema): Rule {
     if (options.path === undefined) {
       options.path = testType === 'component' ? `${project.sourceRoot}/${project.prefix}` : `${project.root}/cypress/e2e`
     }
+
     // eslint-disable-next-line no-console
     console.log(`Creating new ${testType} spec named: ${options.name}`)
 
diff --git a/npm/cypress-schematic/src/schematics/utils/index.ts b/npm/cypress-schematic/src/schematics/utils/index.ts
index c6b5496434c8..206d335f8e43 100644
--- a/npm/cypress-schematic/src/schematics/utils/index.ts
+++ b/npm/cypress-schematic/src/schematics/utils/index.ts
@@ -68,6 +68,7 @@ function generateCTSpec ({ tree, appPath, component }: { tree: Tree, appPath: st
   const componentMatch = componentString?.match(/(?<=class )\S+/g)
   const componentFilename = component['name'].split('.')[0]
   const componentName = componentMatch ? componentMatch[0] : componentFilename
+
  // eslint-disable-next-line no-console
   console.log(`Creating new component spec for: ${componentName}\n`)
 

From ce4bbc888c91ea6c52140ac948c8e1cc543f188c Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 16:53:36 -0500
Subject: [PATCH 088/127] fix vue eslint config

---
 npm/vue/cypress/tsconfig.json | 7 +++++++
 npm/vue/eslint.config.ts      | 9 +++++++++
 npm/vue/test-tsd/index.d.ts   | 2 ++
 3 files changed, 18 insertions(+)
 create mode 100644 npm/vue/cypress/tsconfig.json

diff --git a/npm/vue/cypress/tsconfig.json b/npm/vue/cypress/tsconfig.json
new file mode 100644
index 000000000000..8a588d18f5ce
--- /dev/null
+++ b/npm/vue/cypress/tsconfig.json
@@ -0,0 +1,7 @@
+{
+  "compilerOptions": {
+    "types": ["cypress"],
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
diff --git a/npm/vue/eslint.config.ts b/npm/vue/eslint.config.ts
index 4cf7a7b6a095..3b39378612a3 100644
--- a/npm/vue/eslint.config.ts
+++ b/npm/vue/eslint.config.ts
@@ -4,6 +4,15 @@ import globals from 'globals'
 
 export default [
   ...baseConfig,
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts', 'cypress.config.ts', 'vite.config.ts', 'webpack.config.js', 'rollup.config.mjs'],
+        },
+      },
+    },
+  },
   {
     files: ['**/*.vue'],
     languageOptions: {
diff --git a/npm/vue/test-tsd/index.d.ts b/npm/vue/test-tsd/index.d.ts
index cc81ad487355..f369ebae30fe 100644
--- a/npm/vue/test-tsd/index.d.ts
+++ b/npm/vue/test-tsd/index.d.ts
@@ -1,3 +1,5 @@
 export function expectType<T> (value: T): void
+
 export function expectError<T> (value: T): void
+
 export function expectAssignable<T, T2 extends T = T> (value: T2): void

From 515fb78cf9e8cd654eea5c161a2cfa7d114fd6f9 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 16:57:19 -0500
Subject: [PATCH 089/127] fix vite-dev-server eslint

---
 npm/vite-dev-server/cypress/tsconfig.json | 7 +++++++
 npm/vite-dev-server/eslint.config.ts      | 8 ++++++++
 npm/vite-dev-server/test/tsconfig.json    | 8 ++++++++
 3 files changed, 23 insertions(+)
 create mode 100644 npm/vite-dev-server/cypress/tsconfig.json
 create mode 100644 npm/vite-dev-server/test/tsconfig.json

diff --git a/npm/vite-dev-server/cypress/tsconfig.json b/npm/vite-dev-server/cypress/tsconfig.json
new file mode 100644
index 000000000000..8a588d18f5ce
--- /dev/null
+++ b/npm/vite-dev-server/cypress/tsconfig.json
@@ -0,0 +1,7 @@
+{
+  "compilerOptions": {
+    "types": ["cypress"],
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
diff --git a/npm/vite-dev-server/eslint.config.ts b/npm/vite-dev-server/eslint.config.ts
index 59d3d5a4c460..2498f71602e7 100644
--- a/npm/vite-dev-server/eslint.config.ts
+++ b/npm/vite-dev-server/eslint.config.ts
@@ -3,8 +3,16 @@ import globals from 'globals'
 
 export default [
   ...baseConfig,
+  {
+    ignores: ['index.d.ts', 'index.js', 'test/.mocharc.js'],
+  },
   {
     languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts', 'cypress.config.ts', 'client/initCypressTests.js'],
+        },
+      },
       globals: {
         process: 'readonly',
       },
diff --git a/npm/vite-dev-server/test/tsconfig.json b/npm/vite-dev-server/test/tsconfig.json
new file mode 100644
index 000000000000..ec187a83ccb4
--- /dev/null
+++ b/npm/vite-dev-server/test/tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "../../ts/tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
\ No newline at end of file

From 3d141fb40e2ff192c8d272d8aedce62dfb01d81f Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 16:58:22 -0500
Subject: [PATCH 090/127] fix padding in cli

---
 cli/scripts/post-install.js | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/cli/scripts/post-install.js b/cli/scripts/post-install.js
index 08b822f49213..412fd5bfe1de 100644
--- a/cli/scripts/post-install.js
+++ b/cli/scripts/post-install.js
@@ -24,6 +24,7 @@ fs.ensureDirSync(join(__dirname, '..', 'types'))
 
 includeTypes.forEach((folder) => {
   const source = resolvePkg(`@types/${folder}`, { cwd: __dirname })
+
   // eslint-disable-next-line no-restricted-syntax
   fs.copySync(source, join(__dirname, '..', 'types', folder))
 })
@@ -97,6 +98,7 @@ filesToUncomment.forEach((file) => {
   const result = str.split('\n').map((line) => {
     return line.startsWith('//z ') ? line.substring(4) : line
   }).join('\n')
+
   // eslint-disable-next-line no-restricted-syntax
   fs.writeFileSync(filePath, result)
 })

From 3115ed783340ce173bfc92db081e28313888f9f2 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 15 Jan 2025 17:08:47 -0500
Subject: [PATCH 091/127] fix npm/react

---
 eslint.config.ts                                     | 10 +++++++++-
 .../component/advanced/renderless/mouse-movement.jsx |  2 +-
 .../cypress/component/basic/document/document.cy.jsx |  3 +--
 npm/react/cypress/tsconfig.json                      |  3 ++-
 npm/react/eslint.config.ts                           | 12 ++++++++----
 npm/react/package.json                               |  3 +--
 package.json                                         |  3 ++-
 7 files changed, 24 insertions(+), 12 deletions(-)

diff --git a/eslint.config.ts b/eslint.config.ts
index 34f0b4d01516..e6b19df3ccf2 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -8,7 +8,7 @@ import path from 'path'
 import vue from 'eslint-plugin-vue'
 import stylistic from '@stylistic/eslint-plugin'
 import * as graphql from '@graphql-eslint/eslint-plugin'
-
+import react from 'eslint-plugin-react'
 /**
  * baseConfig should be imported by other packages that define their own eslint.config.ts
  * tsLanguageOptions may be shared, but is probably unnecessary
@@ -22,6 +22,14 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
   cy.configs.recommended,
   mocha.configs.flat.recommended,
   ...vue.configs['flat/recommended'],
+  {
+    ...react.configs.flat.recommended,
+    settings: {
+      react: {
+        version: '18',
+      },
+    },
+  },
   stylistic.configs.customize({
     'braceStyle': '1tbs',
     'arrowParens': true,
diff --git a/npm/react/cypress/component/advanced/renderless/mouse-movement.jsx b/npm/react/cypress/component/advanced/renderless/mouse-movement.jsx
index 7782e8f44d69..d86c85cd841b 100644
--- a/npm/react/cypress/component/advanced/renderless/mouse-movement.jsx
+++ b/npm/react/cypress/component/advanced/renderless/mouse-movement.jsx
@@ -1,5 +1,5 @@
 // https://medium.com/@pierrehedkvist/renderless-components-in-react-8d663746314c
-// eslint-disable-next-line no-unused-vars
+
 import React, { useState, useEffect } from 'react'
 import PropTypes from 'prop-types'
 
diff --git a/npm/react/cypress/component/basic/document/document.cy.jsx b/npm/react/cypress/component/basic/document/document.cy.jsx
index 8d3947b51932..deaba63b8714 100644
--- a/npm/react/cypress/component/basic/document/document.cy.jsx
+++ b/npm/react/cypress/component/basic/document/document.cy.jsx
@@ -12,8 +12,7 @@ const DocumentTest = ({ reportHeight }) => {
             document.documentElement.clientHeight,
             document.body.clientHeight,
           )
-        }
-        }
+        }}
       >
       Report height
       </button>
diff --git a/npm/react/cypress/tsconfig.json b/npm/react/cypress/tsconfig.json
index d39e69494de9..0d321dcd72e1 100644
--- a/npm/react/cypress/tsconfig.json
+++ b/npm/react/cypress/tsconfig.json
@@ -1,7 +1,8 @@
 {
   "extends": "../tsconfig.json",
-  "include": ["./**/*.ts*"],
+  "include": ["**/*"],
   "compilerOptions": {
+    "allowJs": true,
     "baseUrl": ".",
     "jsx": "react",
     "types": ["cypress"],
diff --git a/npm/react/eslint.config.ts b/npm/react/eslint.config.ts
index 65ba4ca3b18c..ee44fd8c2666 100644
--- a/npm/react/eslint.config.ts
+++ b/npm/react/eslint.config.ts
@@ -4,16 +4,20 @@ import react from 'eslint-plugin-react'
 
 export default [
   ...baseConfig,
-  react.configs.flat.recommended,
   {
-    files: ['src/createMount.ts'],
-    rules: {
-      'cypress/no-unnecessary-waiting': 'warn',
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['babel.config.js', 'cypress.config.js', 'eslint.config.ts', 'rollup.config.mjs', 'vite.config.ts'],
+        },
+      },
     },
   },
   {
     rules: {
       'react/prop-types': 'warn',
+      'react/display-name': 'warn',
+      'no-console': 'warn',
     },
   },
 ]
diff --git a/npm/react/package.json b/npm/react/package.json
index d705c78daaab..0be88aa001f4 100644
--- a/npm/react/package.json
+++ b/npm/react/package.json
@@ -29,8 +29,7 @@
     "semver": "^7.5.3",
     "typescript": "~5.4.5",
     "vite": "5.4.10",
-    "vite-plugin-require-transform": "1.0.12",
-    "eslint-plugin-react": "^7.37.4"
+    "vite-plugin-require-transform": "1.0.12"
   },
   "peerDependencies": {
     "@types/react": "^18 || ^19",
diff --git a/package.json b/package.json
index 22cae1ab3bb1..f89d48b22cea 100644
--- a/package.json
+++ b/package.json
@@ -89,7 +89,7 @@
     "get-next-version": "node scripts/get-next-version.js",
     "gulp:debug": "node --inspect-brk ./node_modules/.bin/gulp",
     "postinstall": "node ./scripts/run-postInstall.js",
-    "lint": "lerna run lint --no-bail --concurrency 2",
+    "lint": "lerna run lint --concurrency 8",
     "npm-release": "node scripts/npm-release.js",
     "prepare": "husky install",
     "prepare-release-artifacts": "node ./scripts/prepare-release-artifacts.js",
@@ -212,6 +212,7 @@
     "eslint": "^9.18.0",
     "eslint-plugin-cypress": "^4.1.0",
     "eslint-plugin-mocha": "^10.5.0",
+    "eslint-plugin-react": "^7.37.4",
     "execa": "4.0.0",
     "filesize": "10.1.1",
     "fs-extra": "9.1.0",

From 2fdc396c5a60644752a56ec93977ab07df7d69a5 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 16 Jan 2025 09:35:27 -0500
Subject: [PATCH 092/127] fix lint in packages/config

---
 packages/config/eslint.config.ts   | 7 ++++++-
 packages/config/package.json       | 2 +-
 packages/config/test/tsconfig.json | 8 ++++++++
 3 files changed, 15 insertions(+), 2 deletions(-)
 create mode 100644 packages/config/test/tsconfig.json

diff --git a/packages/config/eslint.config.ts b/packages/config/eslint.config.ts
index 6a27c6713787..6f80a3c95252 100644
--- a/packages/config/eslint.config.ts
+++ b/packages/config/eslint.config.ts
@@ -4,10 +4,15 @@ import globals from 'globals'
 export default [
   ...baseConfig,
   {
-    ignores: ['**/__babel_fixtures__/**/*'],
+    ignores: ['**/__babel_fixtures__/**/*', 'index.js'],
   },
   {
     languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts'],
+        },
+      },
       globals: {
         exports: 'readonly',
         process: 'readonly',
diff --git a/packages/config/package.json b/packages/config/package.json
index 80aafa51ee8e..b5a3ec924d40 100644
--- a/packages/config/package.json
+++ b/packages/config/package.json
@@ -10,7 +10,7 @@
     "check-ts": "tsc --noEmit",
     "clean": "rimraf --glob ./src/*.js ./src/**/*.js ./src/**/**/*.js ./test/!**__fixtures__**/**/*.js || echo 'cleaned'",
     "clean-deps": "rimraf node_modules",
-    "lint": "eslint --ext .js,.ts,.json, .",
+    "lint": "eslint .",
     "test": "yarn test-unit",
     "test-debug": "yarn test-unit --inspect-brk=5566",
     "test-unit": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json -r @packages/ts/register 'test/**/*.spec.ts' --exit --timeout 5000",
diff --git a/packages/config/test/tsconfig.json b/packages/config/test/tsconfig.json
new file mode 100644
index 000000000000..ec187a83ccb4
--- /dev/null
+++ b/packages/config/test/tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "../../ts/tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
\ No newline at end of file

From be425ab80bd9b528b06a95c2b0c2e2846f6e18e7 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 16 Jan 2025 09:38:07 -0500
Subject: [PATCH 093/127] fix lint for npm/webpack-dev-server

---
 npm/webpack-dev-server/cypress/tsconfig.json |  7 +++++++
 npm/webpack-dev-server/eslint.config.ts      | 11 ++++++++++-
 npm/webpack-dev-server/test/tsconfig.json    |  8 ++++++++
 3 files changed, 25 insertions(+), 1 deletion(-)
 create mode 100644 npm/webpack-dev-server/cypress/tsconfig.json
 create mode 100644 npm/webpack-dev-server/test/tsconfig.json

diff --git a/npm/webpack-dev-server/cypress/tsconfig.json b/npm/webpack-dev-server/cypress/tsconfig.json
new file mode 100644
index 000000000000..8a588d18f5ce
--- /dev/null
+++ b/npm/webpack-dev-server/cypress/tsconfig.json
@@ -0,0 +1,7 @@
+{
+  "compilerOptions": {
+    "types": ["cypress"],
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
diff --git a/npm/webpack-dev-server/eslint.config.ts b/npm/webpack-dev-server/eslint.config.ts
index a00264fdb05b..2c5ed1a6c2c5 100644
--- a/npm/webpack-dev-server/eslint.config.ts
+++ b/npm/webpack-dev-server/eslint.config.ts
@@ -4,6 +4,15 @@ import globals from 'globals'
 export default [
   ...baseConfig,
   {
-    ignores: ['__snapshots__/**/*', 'test/fixtures/compilation-fails.spec.js'],
+    ignores: ['__snapshots__/**/*', 'test/fixtures/compilation-fails.spec.js', 'test/.mocharc.js'],
+  },
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts', 'cypress.config.ts'],
+        },
+      },
+    },
   },
 ]
diff --git a/npm/webpack-dev-server/test/tsconfig.json b/npm/webpack-dev-server/test/tsconfig.json
new file mode 100644
index 000000000000..fd5c47307046
--- /dev/null
+++ b/npm/webpack-dev-server/test/tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "../../../packages/ts/tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
\ No newline at end of file

From 09582b4072a32c84e0a834c75a645cb7bb847e8e Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 16 Jan 2025 09:40:37 -0500
Subject: [PATCH 094/127] fix packages/electron

---
 packages/electron/eslint.config.ts | 7 +++----
 packages/electron/tsconfig.json    | 7 +++++++
 2 files changed, 10 insertions(+), 4 deletions(-)
 create mode 100644 packages/electron/tsconfig.json

diff --git a/packages/electron/eslint.config.ts b/packages/electron/eslint.config.ts
index 83e393538748..466f102e1852 100644
--- a/packages/electron/eslint.config.ts
+++ b/packages/electron/eslint.config.ts
@@ -1,12 +1,11 @@
 import { baseConfig } from '../../eslint.config'
+import globals from 'globals'
 
 export default [
   ...baseConfig, {
     languageOptions: {
-      parserOptions: {
-        projectService: {
-          allowDefaultProject: ['lib/*.js', 'app/*.js', 'index.js', 'test/*.js', 'eslint.config.ts'],
-        },
+      globals: {
+        ...globals.node,
       },
     },
   },
diff --git a/packages/electron/tsconfig.json b/packages/electron/tsconfig.json
new file mode 100644
index 000000000000..e1aae408665a
--- /dev/null
+++ b/packages/electron/tsconfig.json
@@ -0,0 +1,7 @@
+{
+  "extends": "../ts/tsconfig.json",
+  "compilerOptions": {
+    "allowJs": true,
+    "noEmit": true,
+  }
+}
\ No newline at end of file

From 0845c5cc0083fb61ff336096e9baf03c6345c681 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 16 Jan 2025 09:42:51 -0500
Subject: [PATCH 095/127] fix extension

---
 packages/extension/eslint.config.ts | 10 ++++++++++
 packages/extension/lib/extension.js |  1 +
 2 files changed, 11 insertions(+)

diff --git a/packages/extension/eslint.config.ts b/packages/extension/eslint.config.ts
index 2a4c6c0e3f8f..4a59571f109c 100644
--- a/packages/extension/eslint.config.ts
+++ b/packages/extension/eslint.config.ts
@@ -8,8 +8,18 @@ export default [
         projectService: false,
         project: './eslint.tsconfig.json',
       },
+    },
+  },
+  {
+    files: ['extension/lib/extension.js'],
+  },
+  {
+    files: ['test/**/*.js'],
+    languageOptions: {
       globals: {
         sinon: 'readonly',
+        global: 'readonly',
+        process: 'readonly',
       },
     },
   },
diff --git a/packages/extension/lib/extension.js b/packages/extension/lib/extension.js
index 75612fe7908f..370cc25e5516 100644
--- a/packages/extension/lib/extension.js
+++ b/packages/extension/lib/extension.js
@@ -1,3 +1,4 @@
+/* global __dirname */
 const path = require('path')
 const Promise = require('bluebird')
 const { getCookieUrl } = require('./util')

From ef293d42d414705c67d8c1ecb3b2c1aa0ace99f4 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 16 Jan 2025 09:44:04 -0500
Subject: [PATCH 096/127] eslint fixes for runner

---
 packages/runner/injection/patches/utils/index.ts | 4 ++--
 packages/runner/src/main.scss.d.ts               | 5 +++--
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/packages/runner/injection/patches/utils/index.ts b/packages/runner/injection/patches/utils/index.ts
index c9cc50942a0f..a8287c077cd6 100644
--- a/packages/runner/injection/patches/utils/index.ts
+++ b/packages/runner/injection/patches/utils/index.ts
@@ -25,7 +25,7 @@ const CROSS_ORIGIN_PREFIX = 'cross:origin:'
  * @param timeout - in ms, if the promise does not complete during this timeout, fail the promise.
  * @returns the data to send
  */
-export const postMessagePromise = <T>({ event, data = {}, timeout }: {event: string, data: any, timeout: number}): Promise<T> => {
+export const postMessagePromise = <T>({ event, data = {}, timeout }: { event: string, data: any, timeout: number }): Promise<T> => {
   return new Promise((resolve, reject) => {
     const eventName = `${CROSS_ORIGIN_PREFIX}${event}`
     let timeoutId
@@ -60,7 +60,7 @@ export const postMessagePromise = <T>({ event, data = {}, timeout }: {event: str
  * @param args - an object containing a url, resourceType and Credential status.
  * @returns A Promise or null depending on the url parameter.
  */
-export const requestSentWithCredentials = <T>(args: {url?: string, resourceType: 'xhr' | 'fetch', credentialStatus: string | boolean}): Promise<T> | undefined => {
+export const requestSentWithCredentials = <T>(args: { url?: string, resourceType: 'xhr' | 'fetch', credentialStatus: string | boolean }): Promise<T> | undefined => {
   if (args.url) {
     // If cypress is enabled on the window use that, otherwise use post message to call out to the primary cypress instance.
     // cypress may be found on the window if this is either the primary cypress instance or if a spec bridge has already been created for this spec bridge.
diff --git a/packages/runner/src/main.scss.d.ts b/packages/runner/src/main.scss.d.ts
index 132b232e8959..7356746eb3bd 100644
--- a/packages/runner/src/main.scss.d.ts
+++ b/packages/runner/src/main.scss.d.ts
@@ -3,5 +3,6 @@
 interface CssExports {
 
 }
-export const cssExports: CssExports;
-export default cssExports;
+export const cssExports: CssExports
+
+export default cssExports

From 1dc3f65e69129a3ec2719770aff4e8a7edb787de Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 16 Jan 2025 09:46:15 -0500
Subject: [PATCH 097/127] set some react rules to warn

---
 eslint.config.ts | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/eslint.config.ts b/eslint.config.ts
index e6b19df3ccf2..716d724f5277 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -221,6 +221,11 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       'cypress/unsafe-to-chain-command': 'off',
       'cypress/no-async-tests': 'off',
       'cypress/no-assigning-return-values': 'off',
+
+      'react/no-string-refs': 'warn',
+      'react/prop-types': 'warn',
+      'react/no-unescaped-entities': 'warn',
+      'react/jsx-no-target-blank': 'warn',
     },
   },
 

From 2748955cae9e8dbdc2f8131fd87d421d3468feeb Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 16 Jan 2025 09:54:53 -0500
Subject: [PATCH 098/127] fixes packages/driver

---
 eslint.config.ts                                    | 12 ++++++++++++
 packages/driver/cypress/e2e/commands/files.cy.js    |  1 +
 packages/driver/cypress/e2e/commands/fixtures.cy.js |  1 +
 packages/driver/eslint.config.ts                    | 11 +++++++++++
 4 files changed, 25 insertions(+)

diff --git a/eslint.config.ts b/eslint.config.ts
index 716d724f5277..74f67b719d80 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -244,10 +244,22 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       globals: {
         require: 'readonly',
         module: 'readonly',
+        ...globals['shared-node-browser'],
+        ...globals['es2020'], // this should be aligned with tsconfig "lib"
       },
     },
   },
 
+  // cy, *sx, and vue files are always in browser
+  {
+    files: ['**/*.cy.{js,ts}', '**/*.{j,t}sx', '**/*.vue'],
+      languageOptions: {
+        globals: {
+          ...globals['browser'],
+        },
+      },
+  },
+
   {
     files: ['webpack.config.js'],
     languageOptions: {
diff --git a/packages/driver/cypress/e2e/commands/files.cy.js b/packages/driver/cypress/e2e/commands/files.cy.js
index c072543ae3ab..dbd7602e827a 100644
--- a/packages/driver/cypress/e2e/commands/files.cy.js
+++ b/packages/driver/cypress/e2e/commands/files.cy.js
@@ -1,3 +1,4 @@
+/* global Buffer */
 const { assertLogLength } = require('../../support/utils')
 const { stripIndent } = require('common-tags')
 
diff --git a/packages/driver/cypress/e2e/commands/fixtures.cy.js b/packages/driver/cypress/e2e/commands/fixtures.cy.js
index 7ae0bf999ac9..1f8e84cef185 100644
--- a/packages/driver/cypress/e2e/commands/fixtures.cy.js
+++ b/packages/driver/cypress/e2e/commands/fixtures.cy.js
@@ -1,3 +1,4 @@
+/* global Buffer */
 const stripAnsi = require('strip-ansi')
 
 const { assertLogLength } = require('../../support/utils')
diff --git a/packages/driver/eslint.config.ts b/packages/driver/eslint.config.ts
index 19bd8f3a4aa8..02b321d1682d 100644
--- a/packages/driver/eslint.config.ts
+++ b/packages/driver/eslint.config.ts
@@ -13,6 +13,17 @@ export default [
           allowDefaultProject: ['index.d.ts', 'cypress/e2e/e2e/origin/dependencies.cy.jsx', 'src/cypress/setter_getter.d.ts'],
         },
       },
+      globals: {
+        ...globals['shared-node-browser'],
+      },
+    },
+  },
+  {
+    files: ['cypress/plugins/*'],
+    languageOptions: {
+      globals: {
+        ...globals['node'],
+      },
     },
   },
 ]

From f03c6ae91085b445cd221d72da3a9a848fae13b6 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 16 Jan 2025 09:59:46 -0500
Subject: [PATCH 099/127] disable inapplicable react rules

---
 eslint.config.ts | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/eslint.config.ts b/eslint.config.ts
index 74f67b719d80..b0fa5d857731 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -226,6 +226,11 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       'react/prop-types': 'warn',
       'react/no-unescaped-entities': 'warn',
       'react/jsx-no-target-blank': 'warn',
+      'react/no-unknown-property': 'warn',
+
+      // we use react 18+, so these rules do not apply
+      'react/react-in-jsx-scope': 'off',
+      'react/jsx-uses-react': 'off',
     },
   },
 

From 6f5340c4a1f9693c9850c481f343a3ecae8e546f Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 16 Jan 2025 10:09:10 -0500
Subject: [PATCH 100/127] fix frontend-shared

---
 eslint.config.ts                                |  5 ++++-
 packages/frontend-shared/eslint.config.ts       | 17 ++++++++++++++---
 .../modals/CloudConnectModals.spec.tsx          |  2 +-
 .../modals/CreateCloudOrgModal.spec.tsx         |  2 +-
 .../modals/NeedManualUpdateModal.spec.tsx       |  2 +-
 5 files changed, 21 insertions(+), 7 deletions(-)

diff --git a/eslint.config.ts b/eslint.config.ts
index b0fa5d857731..266f2c903bf2 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -14,6 +14,8 @@ import react from 'eslint-plugin-react'
  * tsLanguageOptions may be shared, but is probably unnecessary
  * the default config exported from this file applies to
  *   - ./scripts/*
+ *
+ * This can be simplified if ./scripts is converted to a monorepo package in /tooling
  */
 
 export const baseConfig: InfiniteDepthConfigWithExtends[] = [
@@ -227,6 +229,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       'react/no-unescaped-entities': 'warn',
       'react/jsx-no-target-blank': 'warn',
       'react/no-unknown-property': 'warn',
+      'react/jsx-key': 'warn',
 
       // we use react 18+, so these rules do not apply
       'react/react-in-jsx-scope': 'off',
@@ -239,7 +242,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
     ignores: [
       '.releaserc.js',
       'dist/**/*',
-      '**/__snapshots__/*',
+      '**/__snapshots__/**/*',
     ],
   },
 
diff --git a/packages/frontend-shared/eslint.config.ts b/packages/frontend-shared/eslint.config.ts
index ac8e0349ec35..b7641461d05d 100644
--- a/packages/frontend-shared/eslint.config.ts
+++ b/packages/frontend-shared/eslint.config.ts
@@ -1,5 +1,6 @@
 import { baseConfig } from '../../eslint.config'
 import globals from 'globals'
+import react from 'eslint-plugin-react'
 
 export default [
   ...baseConfig,
@@ -22,8 +23,18 @@ export default [
       },
     },
   },
+  // cy tsx files in the src/ dir are component tests,
+  // and since the components that are being rendered are vue
+  // components and not react components, react rules do not apply.
   {
-    files: ['**/*.vue', '**/*.jsx'],
-    
-  }
+    files: ['src/**/*.cy.{j,t}sx'],
+    rules: {
+      ...Object.keys(react.configs.flat.recommended.rules).reduce((rules, rule) => {
+        return {
+          ...rules,
+          [rule]: 'off',
+        }
+      }, {}),
+    },
+  },
 ]
diff --git a/packages/frontend-shared/src/gql-components/modals/CloudConnectModals.spec.tsx b/packages/frontend-shared/src/gql-components/modals/CloudConnectModals.spec.tsx
index 7e752b3dcce4..43dbb10fd799 100644
--- a/packages/frontend-shared/src/gql-components/modals/CloudConnectModals.spec.tsx
+++ b/packages/frontend-shared/src/gql-components/modals/CloudConnectModals.spec.tsx
@@ -41,7 +41,7 @@ describe('<CloudConnectModals />', () => {
         }
       },
       render (gql) {
-        return (<div class="h-screen">
+        return (<div className="h-screen">
           <CloudConnectModals utmMedium="testing" gql={gql}/>
         </div>)
       },
diff --git a/packages/frontend-shared/src/gql-components/modals/CreateCloudOrgModal.spec.tsx b/packages/frontend-shared/src/gql-components/modals/CreateCloudOrgModal.spec.tsx
index c4823526794f..a9e975d2ca45 100644
--- a/packages/frontend-shared/src/gql-components/modals/CreateCloudOrgModal.spec.tsx
+++ b/packages/frontend-shared/src/gql-components/modals/CreateCloudOrgModal.spec.tsx
@@ -6,7 +6,7 @@ describe('<CreateCloudOrgModal />', () => {
     cy.mountFragment(CreateCloudOrgModalFragmentDoc, {
 
       render (gql) {
-        return (<div class="h-screen">
+        return (<div className="h-screen">
           <CreateCloudOrgModal gql={gql}/>
         </div>)
       },
diff --git a/packages/frontend-shared/src/gql-components/modals/NeedManualUpdateModal.spec.tsx b/packages/frontend-shared/src/gql-components/modals/NeedManualUpdateModal.spec.tsx
index a84081814f21..e6f9af73ed25 100644
--- a/packages/frontend-shared/src/gql-components/modals/NeedManualUpdateModal.spec.tsx
+++ b/packages/frontend-shared/src/gql-components/modals/NeedManualUpdateModal.spec.tsx
@@ -8,7 +8,7 @@ describe('<NeedManualUpdateModal />', () => {
         result.projectId = null
       },
       render (gql) {
-        return (<div class="h-screen">
+        return (<div className="h-screen">
           <NeedManualUpdateModal gql={gql} newProjectId='123456'/>
         </div>)
       },

From f4f5148d723d28db692acedd123a6c065e0b21ad Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 16 Jan 2025 10:11:35 -0500
Subject: [PATCH 101/127] add class= back in

---
 .../src/gql-components/modals/CloudConnectModals.spec.tsx       | 2 +-
 .../src/gql-components/modals/CreateCloudOrgModal.spec.tsx      | 2 +-
 .../src/gql-components/modals/NeedManualUpdateModal.spec.tsx    | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/packages/frontend-shared/src/gql-components/modals/CloudConnectModals.spec.tsx b/packages/frontend-shared/src/gql-components/modals/CloudConnectModals.spec.tsx
index 43dbb10fd799..7e752b3dcce4 100644
--- a/packages/frontend-shared/src/gql-components/modals/CloudConnectModals.spec.tsx
+++ b/packages/frontend-shared/src/gql-components/modals/CloudConnectModals.spec.tsx
@@ -41,7 +41,7 @@ describe('<CloudConnectModals />', () => {
         }
       },
       render (gql) {
-        return (<div className="h-screen">
+        return (<div class="h-screen">
           <CloudConnectModals utmMedium="testing" gql={gql}/>
         </div>)
       },
diff --git a/packages/frontend-shared/src/gql-components/modals/CreateCloudOrgModal.spec.tsx b/packages/frontend-shared/src/gql-components/modals/CreateCloudOrgModal.spec.tsx
index a9e975d2ca45..c4823526794f 100644
--- a/packages/frontend-shared/src/gql-components/modals/CreateCloudOrgModal.spec.tsx
+++ b/packages/frontend-shared/src/gql-components/modals/CreateCloudOrgModal.spec.tsx
@@ -6,7 +6,7 @@ describe('<CreateCloudOrgModal />', () => {
     cy.mountFragment(CreateCloudOrgModalFragmentDoc, {
 
       render (gql) {
-        return (<div className="h-screen">
+        return (<div class="h-screen">
           <CreateCloudOrgModal gql={gql}/>
         </div>)
       },
diff --git a/packages/frontend-shared/src/gql-components/modals/NeedManualUpdateModal.spec.tsx b/packages/frontend-shared/src/gql-components/modals/NeedManualUpdateModal.spec.tsx
index e6f9af73ed25..a84081814f21 100644
--- a/packages/frontend-shared/src/gql-components/modals/NeedManualUpdateModal.spec.tsx
+++ b/packages/frontend-shared/src/gql-components/modals/NeedManualUpdateModal.spec.tsx
@@ -8,7 +8,7 @@ describe('<NeedManualUpdateModal />', () => {
         result.projectId = null
       },
       render (gql) {
-        return (<div className="h-screen">
+        return (<div class="h-screen">
           <NeedManualUpdateModal gql={gql} newProjectId='123456'/>
         </div>)
       },

From f968f7434bc0fd9cb42c645c202d70c85d8e1dee Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 16 Jan 2025 10:13:43 -0500
Subject: [PATCH 102/127] react rules do not apply to vue component tests

---
 packages/frontend-shared/eslint.config.ts | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/packages/frontend-shared/eslint.config.ts b/packages/frontend-shared/eslint.config.ts
index b7641461d05d..7f3f0703d382 100644
--- a/packages/frontend-shared/eslint.config.ts
+++ b/packages/frontend-shared/eslint.config.ts
@@ -23,11 +23,11 @@ export default [
       },
     },
   },
-  // cy tsx files in the src/ dir are component tests,
+  // {cy,spec}.tsx files in the src/ dir are component tests,
   // and since the components that are being rendered are vue
   // components and not react components, react rules do not apply.
   {
-    files: ['src/**/*.cy.{j,t}sx'],
+    files: ['src/**/*.{spec,cy}.tsx'],
     rules: {
       ...Object.keys(react.configs.flat.recommended.rules).reduce((rules, rule) => {
         return {
@@ -35,6 +35,7 @@ export default [
           [rule]: 'off',
         }
       }, {}),
+      'react/no-unknown-property': 'off',
     },
   },
 ]

From 4d1a034ab80863a559fe00760b2d5c8b87c1ece3 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 16 Jan 2025 10:15:37 -0500
Subject: [PATCH 103/127] fix whitespace in tooling/packherd

---
 tooling/packherd/test/packherd.spec.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tooling/packherd/test/packherd.spec.ts b/tooling/packherd/test/packherd.spec.ts
index 19611a0c59fb..df04eaa0ce50 100644
--- a/tooling/packherd/test/packherd.spec.ts
+++ b/tooling/packherd/test/packherd.spec.ts
@@ -6,7 +6,7 @@ import {
   packherd,
 } from '../src/packherd'
 import { expect } from 'chai'
-import type{ Metafile } from 'esbuild'
+import type { Metafile } from 'esbuild'
 import Fixtures from '@tooling/system-tests'
 import * as FixturesScaffold from '@tooling/system-tests/lib/dep-installer'
 import path from 'path'

From 69e6d51704eecbe514350e1b787ace1eb6fd5e1f Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 16 Jan 2025 10:28:59 -0500
Subject: [PATCH 104/127] data-context and internal scripts

---
 eslint.config.ts                         | 12 ++++++++++++
 packages/data-context/eslint.config.ts   |  8 ++++++++
 packages/data-context/test/tsconfig.json |  8 ++++++++
 scripts/package.json                     |  2 +-
 scripts/tsconfig.json                    |  6 ++++++
 5 files changed, 35 insertions(+), 1 deletion(-)
 create mode 100644 packages/data-context/test/tsconfig.json
 create mode 100644 scripts/tsconfig.json

diff --git a/eslint.config.ts b/eslint.config.ts
index 266f2c903bf2..55b7f61d1f29 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -230,6 +230,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       'react/jsx-no-target-blank': 'warn',
       'react/no-unknown-property': 'warn',
       'react/jsx-key': 'warn',
+      'react/display-name': 'warn',
 
       // we use react 18+, so these rules do not apply
       'react/react-in-jsx-scope': 'off',
@@ -243,6 +244,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       '.releaserc.js',
       'dist/**/*',
       '**/__snapshots__/**/*',
+      'test/.mocharc.js',
     ],
   },
 
@@ -276,6 +278,8 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
   },
 ]
 
+// applies to ./scripts - eslint tends to crash if this config is in the ./scripts dir?
+
 export default ts.config(
   ...baseConfig,
   {
@@ -297,6 +301,14 @@ export default ts.config(
       globals: {
         ...globals.node,
       },
+      parserOptions: {
+        projectService: false,
+      },
+    },
+  },
+  {
+    rules: {
+      'no-console': 'off',
     },
   },
 )
diff --git a/packages/data-context/eslint.config.ts b/packages/data-context/eslint.config.ts
index c07e0d7b2273..d540f906ff7b 100644
--- a/packages/data-context/eslint.config.ts
+++ b/packages/data-context/eslint.config.ts
@@ -3,11 +3,19 @@ import globals from 'globals'
 
 export default [
   ...baseConfig,
+  {
+    ignores: ['index.js'],
+  },
   {
     languageOptions: {
       globals: {
         ...globals.node,
       },
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts', 'scripts/build.js'],
+        },
+      },
     },
   },
 ]
diff --git a/packages/data-context/test/tsconfig.json b/packages/data-context/test/tsconfig.json
new file mode 100644
index 000000000000..ec187a83ccb4
--- /dev/null
+++ b/packages/data-context/test/tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "../../ts/tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
\ No newline at end of file
diff --git a/scripts/package.json b/scripts/package.json
index abe710cdc66d..7e14c05efc68 100644
--- a/scripts/package.json
+++ b/scripts/package.json
@@ -3,7 +3,7 @@
   "version": "0.0.0-development",
   "private": true,
   "scripts": {
-    "lint": "eslint --ext .js,.ts,.json, ."
+    "lint": "eslint ."
   },
   "nx": {}
 }
diff --git a/scripts/tsconfig.json b/scripts/tsconfig.json
new file mode 100644
index 000000000000..c54809b9b569
--- /dev/null
+++ b/scripts/tsconfig.json
@@ -0,0 +1,6 @@
+{
+  "extends": "../packages/ts/tsconfig",
+  "compilerOptions": {
+    "allowJs": true,
+  }
+}
\ No newline at end of file

From c965691b8da8d634eea2bea8970b942a2eb5faf7 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 16 Jan 2025 10:46:24 -0500
Subject: [PATCH 105/127] app eslint fixes

---
 eslint.config.ts                   |  2 +-
 packages/app/cypress/tsconfig.json |  7 +++++++
 packages/app/eslint.config.ts      | 28 ++++++++++++++++++++++++++++
 3 files changed, 36 insertions(+), 1 deletion(-)
 create mode 100644 packages/app/cypress/tsconfig.json

diff --git a/eslint.config.ts b/eslint.config.ts
index 55b7f61d1f29..2d33d3997933 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -39,7 +39,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
 
   // set up ts parser
   {
-    files: ['**/*.{ts,js,jsx,vue}'],
+    files: ['**/*.{ts,js,jsx,tsx,vue}'],
     languageOptions: {
       parserOptions: {
         parser: ts.parser,
diff --git a/packages/app/cypress/tsconfig.json b/packages/app/cypress/tsconfig.json
new file mode 100644
index 000000000000..8a588d18f5ce
--- /dev/null
+++ b/packages/app/cypress/tsconfig.json
@@ -0,0 +1,7 @@
+{
+  "compilerOptions": {
+    "types": ["cypress"],
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
diff --git a/packages/app/eslint.config.ts b/packages/app/eslint.config.ts
index ac977c2fbfc3..69437cb948dd 100644
--- a/packages/app/eslint.config.ts
+++ b/packages/app/eslint.config.ts
@@ -1,8 +1,20 @@
 import { baseConfig } from '../../eslint.config'
 import globals from 'globals'
+import react from 'eslint-plugin-react'
 
 export default [
   ...baseConfig,
+
+  {
+    languageOptions: {
+      parserOptions: {
+        projectService: {
+          allowDefaultProject: ['eslint.config.ts']
+        }
+      }
+    }
+  },
+
   {
     files: ['**/*.{tsx,jsx,vue,ts,js'],
     languageOptions: {
@@ -19,4 +31,20 @@ export default [
       },
     },
   },
+
+  // {cy,spec}.tsx files in the src/ dir are component tests,
+  // and since the components that are being rendered are vue
+  // components and not react components, react rules do not apply.
+  {
+    files: ['src/**/*.{spec,cy}.tsx'],
+    rules: {
+      ...Object.keys(react.configs.flat.recommended.rules).reduce((rules, rule) => {
+        return {
+          ...rules,
+          [rule]: 'off',
+        }
+      }, {}),
+      'react/no-unknown-property': 'off',
+    },
+  },
 ]

From 12068122f539dd0c4330150bd49fb3e554b47aa4 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 16 Jan 2025 11:08:38 -0500
Subject: [PATCH 106/127] final pass fixes for check-ts and lint

---
 eslint.config.ts                                    |  3 ++-
 npm/webpack-preprocessor/index.ts                   |  7 ++++---
 .../lib/typescript-overrides.ts                     |  2 +-
 package.json                                        |  1 +
 packages/app/eslint.config.ts                       |  8 ++++----
 packages/errors/test/unit/errors_spec.ts            | 13 +++++++++----
 packages/frontend-shared/vite.config.mjs            |  2 --
 packages/runner/eslint.config.ts                    |  3 +++
 packages/runner/src/main.scss.d.ts                  |  5 ++---
 yarn.lock                                           |  7 +++++++
 10 files changed, 33 insertions(+), 18 deletions(-)

diff --git a/eslint.config.ts b/eslint.config.ts
index 2d33d3997933..abb47e424e2d 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -1,7 +1,8 @@
 import js from '@eslint/js'
 import ts, { InfiniteDepthConfigWithExtends } from 'typescript-eslint'
-// @ts-expect-error
+// @ts-expect-error - this package has no type defs
 import cy from 'eslint-plugin-cypress/flat'
+// @ts-expect error - this package has no type defs
 import mocha from 'eslint-plugin-mocha'
 import globals from 'globals'
 import path from 'path'
diff --git a/npm/webpack-preprocessor/index.ts b/npm/webpack-preprocessor/index.ts
index db80399dbaaa..3c5f3a2239f1 100644
--- a/npm/webpack-preprocessor/index.ts
+++ b/npm/webpack-preprocessor/index.ts
@@ -1,7 +1,7 @@
 import Bluebird from 'bluebird'
 import Debug from 'debug'
 import _ from 'lodash'
-import * as events from 'events'
+import type * as events from 'events'
 import * as path from 'path'
 import webpack from 'webpack'
 import utils from './lib/utils'
@@ -275,7 +275,7 @@ const preprocessor: WebpackPreprocessor = (options: PreprocessorOptions = {}): F
       const jsonStats = stats.toJson()
 
       // these stats are really only useful for debugging
-      if (jsonStats.warnings.length > 0) {
+      if (jsonStats.warnings !== undefined && jsonStats.warnings.length > 0) {
         debug(`warnings for ${outputPath} %o`, jsonStats.warnings)
       }
 
@@ -284,7 +284,7 @@ const preprocessor: WebpackPreprocessor = (options: PreprocessorOptions = {}): F
 
         const errorsToAppend = jsonStats.errors
         // remove stack trace lines since they're useless for debugging
-        .map(cleanseError)
+        ?.map(cleanseError)
         // multiple errors separated by newline
         .join('\n\n')
 
@@ -372,6 +372,7 @@ const preprocessor: WebpackPreprocessor = (options: PreprocessorOptions = {}): F
       }
     }
 
+    // @ts-ignore - this results in an error when check-ts'ing packages/driver, but not when check-ts webpack-preprocessor
     const bundler = file.shouldWatch ? compiler.watch(watchOptions, handle) : compiler.run(handle)
 
     // when the spec or project is closed, we need to clean up the cached
diff --git a/npm/webpack-preprocessor/lib/typescript-overrides.ts b/npm/webpack-preprocessor/lib/typescript-overrides.ts
index 262d51833090..60848d8bf3ab 100644
--- a/npm/webpack-preprocessor/lib/typescript-overrides.ts
+++ b/npm/webpack-preprocessor/lib/typescript-overrides.ts
@@ -1,7 +1,7 @@
 const debug = require('debug')('cypress:webpack')
 const _ = require('lodash')
 
-import { CompilerOptions, CreateProgramOptions } from 'typescript'
+import type { CompilerOptions, CreateProgramOptions } from 'typescript'
 
 let patched = false
 
diff --git a/package.json b/package.json
index f89d48b22cea..657dffaf82c9 100644
--- a/package.json
+++ b/package.json
@@ -168,6 +168,7 @@
     "@types/debug": "4.1.7",
     "@types/detect-port": "^1.3.5",
     "@types/enzyme-adapter-react-16": "1.0.5",
+    "@types/eslint-plugin-mocha": "^10.4.0",
     "@types/fluent-ffmpeg": "^2.1.18",
     "@types/fs-extra": "^9.0.13",
     "@types/getenv": "^1.0.0",
diff --git a/packages/app/eslint.config.ts b/packages/app/eslint.config.ts
index 69437cb948dd..55e487ae2208 100644
--- a/packages/app/eslint.config.ts
+++ b/packages/app/eslint.config.ts
@@ -9,10 +9,10 @@ export default [
     languageOptions: {
       parserOptions: {
         projectService: {
-          allowDefaultProject: ['eslint.config.ts']
-        }
-      }
-    }
+          allowDefaultProject: ['*.config.{ts,js,cjs,mjs}'],
+        },
+      },
+    },
   },
 
   {
diff --git a/packages/errors/test/unit/errors_spec.ts b/packages/errors/test/unit/errors_spec.ts
index 609464bebeda..bad720439861 100644
--- a/packages/errors/test/unit/errors_spec.ts
+++ b/packages/errors/test/unit/errors_spec.ts
@@ -1,7 +1,7 @@
+/* eslint-disable no-console */
 import 'sinon-chai'
 import style from 'ansi-styles'
 import chai, { expect } from 'chai'
-/* eslint-disable no-console */
 import chalk from 'chalk'
 import sinon, { SinonSpy } from 'sinon'
 import * as errors from '../../src'
@@ -84,9 +84,11 @@ describe('lib/errors', () => {
       })
 
       it('is not logged if a known Cypress error', () => {
-        const err = new Error('foo')
+        const err: Error & {
+          isCypressErr?: boolean
+        } = new Error('foo')
 
-        err['isCypressErr'] = true
+        err.isCypressErr = true
 
         const ret = errors.log(err)
 
@@ -97,7 +99,10 @@ describe('lib/errors', () => {
     })
 
     context('err.cause', () => {
-      let err
+      let err: Error & {
+        cause?: any
+        isCypressErr?: boolean
+      }
 
       beforeEach(() => {
         err = new Error('foo')
diff --git a/packages/frontend-shared/vite.config.mjs b/packages/frontend-shared/vite.config.mjs
index d917204a4599..d4a3162a9a4e 100644
--- a/packages/frontend-shared/vite.config.mjs
+++ b/packages/frontend-shared/vite.config.mjs
@@ -13,7 +13,6 @@ import { FileSystemIconLoader } from 'unplugin-icons/loaders'
 
 import PkgConfig from 'vite-plugin-package-config'
 
-// @ts-expect-error
 const __filename = fileURLToPath(import.meta.url)
 const __dirname = path.dirname(__filename)
 
@@ -116,7 +115,6 @@ export const makeConfig = (config = {}, plugins = {}) => {
     css: {
       preprocessorOptions: {
         scss: {
-          // @ts-expect-error
           additionalData: `@use "file:///${path.resolve(__dirname, '../reporter/src/lib/variables.scss').replaceAll('\\', '/')}" as *;\n`,
         },
       },
diff --git a/packages/runner/eslint.config.ts b/packages/runner/eslint.config.ts
index 8c91f1e0c081..a1c7bb2300b4 100644
--- a/packages/runner/eslint.config.ts
+++ b/packages/runner/eslint.config.ts
@@ -2,4 +2,7 @@ import { baseConfig } from '../../eslint.config'
 
 export default [
   ...baseConfig,
+  {
+    ignores: ['src/main.scss.d.ts'],
+  },
 ]
diff --git a/packages/runner/src/main.scss.d.ts b/packages/runner/src/main.scss.d.ts
index 7356746eb3bd..132b232e8959 100644
--- a/packages/runner/src/main.scss.d.ts
+++ b/packages/runner/src/main.scss.d.ts
@@ -3,6 +3,5 @@
 interface CssExports {
 
 }
-export const cssExports: CssExports
-
-export default cssExports
+export const cssExports: CssExports;
+export default cssExports;
diff --git a/yarn.lock b/yarn.lock
index cd4f317e2de5..41d180ae2698 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -7828,6 +7828,13 @@
     "@types/cheerio" "*"
     "@types/react" "*"
 
+"@types/eslint-plugin-mocha@^10.4.0":
+  version "10.4.0"
+  resolved "https://registry.yarnpkg.com/@types/eslint-plugin-mocha/-/eslint-plugin-mocha-10.4.0.tgz#30fe04129f426c69cd46c061d101eec52cdedc57"
+  integrity sha512-knOH7Y13tuK0gqQqiiSucMxF4R/LrbRJwCiDQEhfbktUGvf9xFBQ8TdpCUO1xK0EwafOssu7+KuxqFV1xOXOtQ==
+  dependencies:
+    "@types/eslint" "*"
+
 "@types/eslint-scope@^3.7.3":
   version "3.7.3"
   resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.3.tgz#125b88504b61e3c8bc6f870882003253005c3224"

From 4f6d36f21a7a4c577f63629eb9cead9afc65cc7e Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 16 Jan 2025 11:49:20 -0500
Subject: [PATCH 107/127] fix sorting in root package json, add (?does it
 work?) json eslint plugin

---
 eslint.config.ts                   | 13 ++++
 package.json                       | 10 +--
 packages/driver/test/tsconfig.json |  8 +++
 yarn.lock                          | 98 +++++++++++++++++++++++++++---
 4 files changed, 118 insertions(+), 11 deletions(-)
 create mode 100644 packages/driver/test/tsconfig.json

diff --git a/eslint.config.ts b/eslint.config.ts
index abb47e424e2d..b814598aa568 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -10,6 +10,8 @@ import vue from 'eslint-plugin-vue'
 import stylistic from '@stylistic/eslint-plugin'
 import * as graphql from '@graphql-eslint/eslint-plugin'
 import react from 'eslint-plugin-react'
+import json from 'eslint-plugin-json-files'
+
 /**
  * baseConfig should be imported by other packages that define their own eslint.config.ts
  * tsLanguageOptions may be shared, but is probably unnecessary
@@ -277,6 +279,17 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       globals: globals.node,
     },
   },
+
+  {
+    files: ['package.json'],
+    plugins: {
+      'json-files': json,
+    },
+    processor: json.processors.json,
+    rules: {
+      'json-files/sort-package-json': 'error',
+    },
+  },
 ]
 
 // applies to ./scripts - eslint tends to crash if this config is in the ./scripts dir?
diff --git a/package.json b/package.json
index 8d5879351756..e0dfac9c11f5 100644
--- a/package.json
+++ b/package.json
@@ -139,9 +139,9 @@
     "@babel/eslint-parser": "7.25.1",
     "@cypress/request": "^3.0.6",
     "@cypress/request-promise": "^5.0.0",
-    "@eslint/js": "^9.18.0",
     "@electron/fuses": "1.8.0",
     "@electron/notarize": "^2.5.0",
+    "@eslint/js": "^9.18.0",
     "@fellow/eslint-plugin-coffee": "0.4.13",
     "@graphql-codegen/add": "3.1.0",
     "@graphql-codegen/cli": "2.2.0",
@@ -162,6 +162,8 @@
     "@reach/dialog": "0.10.5",
     "@semantic-release/changelog": "6.0.3",
     "@semantic-release/git": "10.0.1",
+
+    "@stylistic/eslint-plugin": "^2.13.0",
     "@types/better-sqlite3": "^7.6.3",
     "@types/bluebird": "3.5.29",
     "@types/chai-enzyme": "0.6.7",
@@ -212,8 +214,10 @@
     "enzyme-adapter-react-16": "1.12.1",
     "eslint": "^9.18.0",
     "eslint-plugin-cypress": "^4.1.0",
+    "eslint-plugin-json-files": "^4.4.2",
     "eslint-plugin-mocha": "^10.5.0",
     "eslint-plugin-react": "^7.37.4",
+    "eslint-plugin-vue": "^9.32.0",
     "execa": "4.0.0",
     "filesize": "10.1.1",
     "fs-extra": "9.1.0",
@@ -273,9 +277,7 @@
     "ts-node": "^10.9.2",
     "typescript": "5.3.3",
     "typescript-eslint": "^8.20.0",
-    "yarn-deduplicate": "3.1.0",
-    "@stylistic/eslint-plugin": "^2.13.0",
-    "eslint-plugin-vue": "^9.32.0"
+    "yarn-deduplicate": "3.1.0"
   },
   "engines": {
     "node": ">=20.18.1",
diff --git a/packages/driver/test/tsconfig.json b/packages/driver/test/tsconfig.json
new file mode 100644
index 000000000000..ec187a83ccb4
--- /dev/null
+++ b/packages/driver/test/tsconfig.json
@@ -0,0 +1,8 @@
+{
+  "extends": "../../ts/tsconfig.json",
+  "compilerOptions": {
+    "noEmit": true,
+    "allowJs": true,
+  },
+  "include": ["**/*"]
+}
\ No newline at end of file
diff --git a/yarn.lock b/yarn.lock
index 33616cd9f9fb..f43956aa5c74 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1392,7 +1392,7 @@
     "@babel/highlight" "^7.24.7"
     picocolors "^1.0.0"
 
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.7", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.2":
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.7", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.2":
   version "7.26.2"
   resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85"
   integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==
@@ -4408,6 +4408,11 @@
   resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c"
   integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==
 
+"@humanwhocodes/momoa@^2.0.2":
+  version "2.0.4"
+  resolved "https://registry.yarnpkg.com/@humanwhocodes/momoa/-/momoa-2.0.4.tgz#8b9e7a629651d15009c3587d07a222deeb829385"
+  integrity sha512-RE815I4arJFtt+FVeU1Tgp9/Xvecacji8w/V6XtXsWWH/wz/eNkNbhb+ny/+PlVZjV0rxQpRSQKNKE3lcktHEA==
+
 "@humanwhocodes/retry@^0.3.0":
   version "0.3.1"
   resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.3.1.tgz#c72a5c76a9fbaf3488e231b13dc52c0da7bab42a"
@@ -10073,7 +10078,7 @@ ajv@8.12.0:
     require-from-string "^2.0.2"
     uri-js "^4.2.2"
 
-ajv@8.17.1, ajv@^8.0.0, ajv@^8.6.2, ajv@^8.9.0:
+ajv@8.17.1, ajv@^8.0.0, ajv@^8.2.0, ajv@^8.6.2, ajv@^8.9.0:
   version "8.17.1"
   resolved "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6"
   integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==
@@ -11192,6 +11197,17 @@ before-after-hook@^2.2.0:
   resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.2.tgz#a6e8ca41028d90ee2c24222f201c90956091613e"
   integrity sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==
 
+better-ajv-errors@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/better-ajv-errors/-/better-ajv-errors-1.2.0.tgz#6412d58fa4d460ff6ccbd9e65c5fef9781cc5286"
+  integrity sha512-UW+IsFycygIo7bclP9h5ugkNH8EjCSgqyFB/yQ4Hqqa1OEYDtb0uFIkYE0b6+CjkgJYVM5UKI/pJPxjYe9EZlA==
+  dependencies:
+    "@babel/code-frame" "^7.16.0"
+    "@humanwhocodes/momoa" "^2.0.2"
+    chalk "^4.1.2"
+    jsonpointer "^5.0.0"
+    leven "^3.1.0 < 4"
+
 better-sqlite3@11.5.0:
   version "11.5.0"
   resolved "https://registry.yarnpkg.com/better-sqlite3/-/better-sqlite3-11.5.0.tgz#58faa51e02845a578dd154f0083487132ead0695"
@@ -14484,6 +14500,11 @@ detect-libc@^2.0.0, detect-libc@^2.0.1:
   resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.2.tgz#8ccf2ba9315350e1241b88d0ac3b0e1fbd99605d"
   integrity sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==
 
+detect-newline@3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651"
+  integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==
+
 detect-node-es@^1.0.0:
   version "1.0.0"
   resolved "https://registry.yarnpkg.com/detect-node-es/-/detect-node-es-1.0.0.tgz#c0318b9e539a5256ca780dd9575c9345af05b8ed"
@@ -15913,6 +15934,18 @@ eslint-plugin-cypress@^4.1.0:
   dependencies:
     globals "^15.11.0"
 
+eslint-plugin-json-files@^4.4.2:
+  version "4.4.2"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-json-files/-/eslint-plugin-json-files-4.4.2.tgz#64a4ecb80b69273d61032767a7143bfc12c6ba46"
+  integrity sha512-P+bNyzNmz/ia5JmEAjZAwsnMjrm/Zffxlpj3fz+LgF/Ka8qm2bopJIvqiCaBly0wjdy3XYOGQVZzfjefPsHClw==
+  dependencies:
+    ajv "^8.2.0"
+    better-ajv-errors "^1.2.0"
+    fast-glob "^3.3.2"
+    requireindex "^1.2.0"
+    semver "^7.0.0"
+    sort-package-json "^1.22.1"
+
 eslint-plugin-mocha@^10.5.0:
   version "10.5.0"
   resolved "https://registry.yarnpkg.com/eslint-plugin-mocha/-/eslint-plugin-mocha-10.5.0.tgz#0aca8d709e7cddef566e0dc252f6b02e307a2b7e"
@@ -17826,6 +17859,11 @@ gifwrap@^0.10.1:
     image-q "^4.0.0"
     omggif "^1.0.10"
 
+git-hooks-list@1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/git-hooks-list/-/git-hooks-list-1.0.3.tgz#be5baaf78203ce342f2f844a9d2b03dba1b45156"
+  integrity sha512-Y7wLWcrLUXwk2noSka166byGCvhMtDRpgHdzCno1UQv/n/Hegp++a2xBWJL1lJarnKD3SWaljD+0z1ztqxuKyQ==
+
 git-log-parser@^1.2.0:
   version "1.2.0"
   resolved "https://registry.yarnpkg.com/git-log-parser/-/git-log-parser-1.2.0.tgz#2e6a4c1b13fc00028207ba795a7ac31667b9fd4a"
@@ -18155,6 +18193,20 @@ globalthis@^1.0.1, globalthis@^1.0.4:
     define-properties "^1.2.1"
     gopd "^1.0.1"
 
+globby@10.0.0:
+  version "10.0.0"
+  resolved "https://registry.yarnpkg.com/globby/-/globby-10.0.0.tgz#abfcd0630037ae174a88590132c2f6804e291072"
+  integrity sha512-3LifW9M4joGZasyYPz2A1U74zbC/45fvpXUvO/9KbSa+VV0aGZarWkfdgKyR9sExNP0t0x0ss/UMJpNpcaTspw==
+  dependencies:
+    "@types/glob" "^7.1.1"
+    array-union "^2.1.0"
+    dir-glob "^3.0.1"
+    fast-glob "^3.0.3"
+    glob "^7.1.3"
+    ignore "^5.1.1"
+    merge2 "^1.2.3"
+    slash "^3.0.0"
+
 globby@10.0.1, globby@^10.0.1:
   version "10.0.1"
   resolved "https://registry.yarnpkg.com/globby/-/globby-10.0.1.tgz#4782c34cb75dd683351335c5829cc3420e606b22"
@@ -19994,16 +20046,16 @@ is-path-inside@^3.0.2:
   resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
   integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
 
+is-plain-obj@2.1.0, is-plain-obj@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
+  integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
+
 is-plain-obj@^1.0.0, is-plain-obj@^1.1.0:
   version "1.1.0"
   resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
   integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4=
 
-is-plain-obj@^2.1.0:
-  version "2.1.0"
-  resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
-  integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
-
 is-plain-obj@^3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7"
@@ -20788,6 +20840,11 @@ jsonparse@^1.2.0, jsonparse@^1.3.1:
   resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280"
   integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=
 
+jsonpointer@^5.0.0:
+  version "5.0.1"
+  resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.1.tgz#2110e0af0900fd37467b5907ecd13a7884a1b559"
+  integrity sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==
+
 jsonwebtoken@^8.5.1:
   version "8.5.1"
   resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz#00e71e0b8df54c2121a1f26137df2280673bcc0d"
@@ -21203,6 +21260,11 @@ levelup@^0.18.2:
     semver "~2.3.1"
     xtend "~3.0.0"
 
+"leven@^3.1.0 < 4":
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
+  integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
+
 levn@^0.4.1:
   version "0.4.1"
   resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
@@ -27473,6 +27535,11 @@ require-main-filename@^2.0.0:
   resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
   integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
 
+requireindex@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/requireindex/-/requireindex-1.2.0.tgz#3463cdb22ee151902635aa6c9535d4de9c2ef1ef"
+  integrity sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==
+
 requires-port@^1.0.0:
   version "1.0.0"
   resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
@@ -29172,6 +29239,23 @@ sort-keys@^2.0.0:
   dependencies:
     is-plain-obj "^1.0.0"
 
+sort-object-keys@^1.1.3:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/sort-object-keys/-/sort-object-keys-1.1.3.tgz#bff833fe85cab147b34742e45863453c1e190b45"
+  integrity sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==
+
+sort-package-json@^1.22.1:
+  version "1.57.0"
+  resolved "https://registry.yarnpkg.com/sort-package-json/-/sort-package-json-1.57.0.tgz#e95fb44af8ede0bb6147e3f39258102d4bb23fc4"
+  integrity sha512-FYsjYn2dHTRb41wqnv+uEqCUvBpK3jZcTp9rbz2qDTmel7Pmdtf+i2rLaaPMRZeSVM60V3Se31GyWFpmKs4Q5Q==
+  dependencies:
+    detect-indent "^6.0.0"
+    detect-newline "3.1.0"
+    git-hooks-list "1.0.3"
+    globby "10.0.0"
+    is-plain-obj "2.1.0"
+    sort-object-keys "^1.1.3"
+
 source-list-map@^2.0.0:
   version "2.0.1"
   resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34"

From 6be9cd0a5e8d35924c4fdae72a0062562360bcb2 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 16 Jan 2025 12:54:15 -0500
Subject: [PATCH 108/127] remove unused `path` identifier in root
 eslint.config.ts

---
 eslint.config.ts | 1 -
 1 file changed, 1 deletion(-)

diff --git a/eslint.config.ts b/eslint.config.ts
index b814598aa568..54108625af96 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -5,7 +5,6 @@ import cy from 'eslint-plugin-cypress/flat'
 // @ts-expect error - this package has no type defs
 import mocha from 'eslint-plugin-mocha'
 import globals from 'globals'
-import path from 'path'
 import vue from 'eslint-plugin-vue'
 import stylistic from '@stylistic/eslint-plugin'
 import * as graphql from '@graphql-eslint/eslint-plugin'

From 36b8655cc47bbc365a9b47e9aa06ff774d90eaeb Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 16 Jan 2025 13:03:25 -0500
Subject: [PATCH 109/127] expound on eslint methodology in CONTRIBUTING.md

---
 CONTRIBUTING.md | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 9d0c6c1c71d3..499f8419f55e 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -340,7 +340,12 @@ Many Cypress packages print out debugging information to console via the `debug`
 
 ### Coding Style
 
-We use [eslint](https://eslint.org/) to lint all JavaScript code.
+Cypress uses [eslint](https://eslint.org/) to lint all JavaScript code. All packages should import the `baseConfig` from the root `eslint.config.ts`. The only overrides in package-specific `eslint.config.ts` files should be regarding:
+- Which files get processed
+- Which globals are expected for selections of files
+- Downgrading inherited rules from `error` to `warn`, if they cannot be `--fix`ed.
+
+Package-specific `eslint.config.ts` configurations should *never* turn inherited rules off. This is to ensure repository-wide linting standards. If a rule is inappropriately applied to a package or its files, there is likely a better solution than turning the rule off.
 
 This project uses a Git pre-commit hook to lint staged files before committing. See the [`lint-staged` project](https://github.com/okonet/lint-staged) for details.
 `lint-staged` will try to auto-fix any lint errors with `eslint --fix`, so if it fails, you must manually fix the lint errors before committing.

From b2a7e3e86e48c94f6c6456b704a269ffbb304854 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 21 Jan 2025 11:54:23 -0500
Subject: [PATCH 110/127] use prettier for json files, use
 prettier-package-json for package.json files

---
 .prettierignore       |   6 ++-
 .vscode/settings.json |  10 +---
 autobarrel.json       |   7 +--
 electron-builder.json |   4 +-
 eslint.config.ts      |  12 -----
 nx.json               |  22 ++------
 package.json          |  98 +++++++++++++++++-----------------
 renovate.json         |  20 ++-----
 yarn.lock             | 120 ++++++++++++------------------------------
 9 files changed, 101 insertions(+), 198 deletions(-)

diff --git a/.prettierignore b/.prettierignore
index 5ca09b5bd510..d346c50806a5 100644
--- a/.prettierignore
+++ b/.prettierignore
@@ -1,4 +1,8 @@
 **/*
 
 /.nx/cache
-/.nx/workspace-data
\ No newline at end of file
+/.nx/workspace-data
+
+!**/*.json
+**/package.json
+**/package-lock.json
\ No newline at end of file
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 3e90e64819c5..fddf83a2ed68 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -8,16 +8,8 @@
     "json"
   ],
   "eslint.enable": true,
-  // this project does not use Prettier
-  // thus set all settings to disable accidentally running Prettier
+  // this project only uses Prettier for json files
   "prettier.requireConfig": true,
-  "prettier.disableLanguages": [
-    "javascript",
-    "javascriptreact",
-    "typescript",
-    "typescriptreact",
-    "json"
-  ],
   "editor.codeActionsOnSave": {
     "source.fixAll.eslint": "explicit"
   },
diff --git a/autobarrel.json b/autobarrel.json
index 3afaf2afc552..6636e6412f5c 100644
--- a/autobarrel.json
+++ b/autobarrel.json
@@ -1,13 +1,10 @@
 {
   "prefix": "/* eslint-disable padding-line-between-statements */",
-  "paths": [
-    "packages/graphql/src/**/*",
-    "packages/data-context/src/**/*"
-  ],
+  "paths": ["packages/graphql/src/**/*", "packages/data-context/src/**/*"],
   "ignore": [
     "packages/data-context/src/gen",
     "packages/graphql/src/stitching",
     "packages/graphql/src/testing",
     "packages/graphql/src/gen"
   ]
-}
\ No newline at end of file
+}
diff --git a/electron-builder.json b/electron-builder.json
index 91a46582f953..73bb534bbde7 100644
--- a/electron-builder.json
+++ b/electron-builder.json
@@ -16,9 +16,7 @@
     "executableName": "Cypress"
   },
   "win": {
-    "signingHashAlgorithms": [
-      "sha256"
-    ],
+    "signingHashAlgorithms": ["sha256"],
     "sign": "./scripts/windows-sign.js",
     "target": "dir"
   },
diff --git a/eslint.config.ts b/eslint.config.ts
index 54108625af96..19646fb94ffb 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -9,7 +9,6 @@ import vue from 'eslint-plugin-vue'
 import stylistic from '@stylistic/eslint-plugin'
 import * as graphql from '@graphql-eslint/eslint-plugin'
 import react from 'eslint-plugin-react'
-import json from 'eslint-plugin-json-files'
 
 /**
  * baseConfig should be imported by other packages that define their own eslint.config.ts
@@ -278,17 +277,6 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       globals: globals.node,
     },
   },
-
-  {
-    files: ['package.json'],
-    plugins: {
-      'json-files': json,
-    },
-    processor: json.processors.json,
-    rules: {
-      'json-files/sort-package-json': 'error',
-    },
-  },
 ]
 
 // applies to ./scripts - eslint tends to crash if this config is in the ./scripts dir?
diff --git a/nx.json b/nx.json
index e698a49a0163..3aec702724e3 100644
--- a/nx.json
+++ b/nx.json
@@ -1,36 +1,24 @@
 {
   "targetDefaults": {
     "lint": {
-      "inputs": [
-        "default",
-        "{workspaceRoot}/.eslintrc.js"
-      ],
+      "inputs": ["default", "{workspaceRoot}/.eslintrc.js"],
       "cache": false
     },
     "check-ts": {
-      "inputs": [
-        "default",
-        "sharedGlobals"
-      ],
+      "inputs": ["default", "sharedGlobals"],
       "cache": false
     },
     "build": {
-      "dependsOn": [
-        "^build"
-      ],
+      "dependsOn": ["^build"],
       "cache": false
     },
     "build-prod": {
-      "dependsOn": [
-        "^build-prod"
-      ],
+      "dependsOn": ["^build-prod"],
       "cache": false
     }
   },
   "namedInputs": {
-    "sharedGlobals": [
-      "{workspaceRoot}/scripts"
-    ],
+    "sharedGlobals": ["{workspaceRoot}/scripts"],
     "default": [
       "{projectRoot}/**/*",
       "sharedGlobals",
diff --git a/package.json b/package.json
index e0dfac9c11f5..d1a4f2d6ed24 100644
--- a/package.json
+++ b/package.json
@@ -1,52 +1,16 @@
 {
+  "private": true,
   "name": "cypress",
   "version": "14.0.0",
-  "private": true,
   "description": "Cypress is a next generation front end testing tool built for the modern web",
-  "keywords": [
-    "automation",
-    "browser",
-    "cypress",
-    "cypress.io",
-    "e2e",
-    "end-to-end",
-    "integration",
-    "component",
-    "mocks",
-    "runner",
-    "spies",
-    "stubs",
-    "test",
-    "testing"
-  ],
+  "license": "MIT",
   "homepage": "https://cypress.io",
-  "bugs": {
-    "url": "https://github.com/cypress-io/cypress/issues"
-  },
   "repository": {
     "type": "git",
     "url": "https://github.com/cypress-io/cypress.git"
   },
-  "license": "MIT",
-  "workspaces": {
-    "packages": [
-      "cli",
-      "packages/*",
-      "npm/*",
-      "tooling/*",
-      "system-tests",
-      "scripts"
-    ],
-    "nohoist": [
-      "**/@wdio/*",
-      "**/webpack-preprocessor/babel-loader",
-      "**/webpack-preprocessor/**/merge-source-map",
-      "**/webpack-preprocessor/**/patch-package",
-      "**/webpack-batteries-included-preprocessor/ts-loader",
-      "**/jest",
-      "**/jest*",
-      "**/expect"
-    ]
+  "bugs": {
+    "url": "https://github.com/cypress-io/cypress/issues"
   },
   "scripts": {
     "binary-build": "cross-env NODE_OPTIONS=--max_old_space_size=8192 node ./scripts/binary.js build",
@@ -81,8 +45,8 @@
     "cypress:run:debug": "node ./scripts/debug.js cypress:run",
     "cypress:verify": "cypress verify --dev",
     "dev": "gulp dev",
-    "dev-debug": "node ./scripts/debug.js dev",
     "dev:clean": "gulp dev:clean",
+    "dev-debug": "node ./scripts/debug.js dev",
     "docker": "./scripts/run-docker-local.sh",
     "docker-dev": "./scripts/run-docker-local.sh dev",
     "ensure-deps": "./scripts/ensure-dependencies.sh",
@@ -115,9 +79,25 @@
     "verify:mocha:results": "node ./scripts/verify-mocha-results",
     "watch": "yarn gulp watch"
   },
-  "lint-staged": {
-    "*.coffee": "yarn stop-only --folder",
-    "*.{js,jsx,ts,tsx,json,eslintrc,vue}": "eslint --fix"
+  "workspaces": {
+    "packages": [
+      "cli",
+      "packages/*",
+      "npm/*",
+      "tooling/*",
+      "system-tests",
+      "scripts"
+    ],
+    "nohoist": [
+      "**/@wdio/*",
+      "**/webpack-preprocessor/babel-loader",
+      "**/webpack-preprocessor/**/merge-source-map",
+      "**/webpack-preprocessor/**/patch-package",
+      "**/webpack-batteries-included-preprocessor/ts-loader",
+      "**/jest",
+      "**/jest*",
+      "**/expect"
+    ]
   },
   "resolutions": {
     "**/@types/cheerio": "0.22.21",
@@ -162,7 +142,6 @@
     "@reach/dialog": "0.10.5",
     "@semantic-release/changelog": "6.0.3",
     "@semantic-release/git": "10.0.1",
-
     "@stylistic/eslint-plugin": "^2.13.0",
     "@types/better-sqlite3": "^7.6.3",
     "@types/bluebird": "3.5.29",
@@ -214,7 +193,6 @@
     "enzyme-adapter-react-16": "1.12.1",
     "eslint": "^9.18.0",
     "eslint-plugin-cypress": "^4.1.0",
-    "eslint-plugin-json-files": "^4.4.2",
     "eslint-plugin-mocha": "^10.5.0",
     "eslint-plugin-react": "^7.37.4",
     "eslint-plugin-vue": "^9.32.0",
@@ -255,6 +233,8 @@
     "patch-package": "6.4.7",
     "playwright-webkit": "1.24.2",
     "pluralize": "8.0.0",
+    "prettier": "^2.8.8",
+    "prettier-package-json": "^2.8.0",
     "print-arch": "1.0.0",
     "proxyquire": "2.1.3",
     "react": "18.3.1",
@@ -279,10 +259,32 @@
     "typescript-eslint": "^8.20.0",
     "yarn-deduplicate": "3.1.0"
   },
+  "keywords": [
+    "automation",
+    "browser",
+    "component",
+    "cypress",
+    "cypress.io",
+    "e2e",
+    "end-to-end",
+    "integration",
+    "mocks",
+    "runner",
+    "spies",
+    "stubs",
+    "test",
+    "testing"
+  ],
   "engines": {
     "node": ">=20.18.1",
     "yarn": ">=1.22.22"
   },
-  "productName": "Cypress",
-  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
+  "lint-staged": {
+    "*.coffee": "yarn stop-only --folder",
+    "*.{js,jsx,ts,tsx,eslintrc,vue}": "eslint --fix",
+    "*.json": "prettier --write",
+    "package.json": "prettier-package-json --write"
+  },
+  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
+  "productName": "Cypress"
 }
diff --git a/renovate.json b/renovate.json
index 7a21abc1ee3d..2c9ed7843ea5 100644
--- a/renovate.json
+++ b/renovate.json
@@ -8,27 +8,15 @@
     "replacements:all",
     "workarounds:all"
   ],
-  "ignorePaths": [
-    "**/node_modules/**",
-    "**/system-tests/projects/**"
-  ],
-  "labels": [
-    "type: dependencies"
-  ],
+  "ignorePaths": ["**/node_modules/**", "**/system-tests/projects/**"],
+  "labels": ["type: dependencies"],
   "packageRules": [
     {
       "automerge": true,
-      "matchUpdateTypes": [
-        "minor",
-        "patch",
-        "pin",
-        "digest"
-      ]
+      "matchUpdateTypes": ["minor", "patch", "pin", "digest"]
     }
   ],
-  "postUpdateOptions": [
-    "yarnDedupeHighest"
-  ],
+  "postUpdateOptions": ["yarnDedupeHighest"],
   "prConcurrentLimit": 4,
   "prHourlyLimit": 1,
   "rangeStrategy": "bump",
diff --git a/yarn.lock b/yarn.lock
index f43956aa5c74..fd18b7efe81d 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1392,7 +1392,7 @@
     "@babel/highlight" "^7.24.7"
     picocolors "^1.0.0"
 
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.7", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.2":
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.7", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.2":
   version "7.26.2"
   resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85"
   integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==
@@ -4408,11 +4408,6 @@
   resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c"
   integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==
 
-"@humanwhocodes/momoa@^2.0.2":
-  version "2.0.4"
-  resolved "https://registry.yarnpkg.com/@humanwhocodes/momoa/-/momoa-2.0.4.tgz#8b9e7a629651d15009c3587d07a222deeb829385"
-  integrity sha512-RE815I4arJFtt+FVeU1Tgp9/Xvecacji8w/V6XtXsWWH/wz/eNkNbhb+ny/+PlVZjV0rxQpRSQKNKE3lcktHEA==
-
 "@humanwhocodes/retry@^0.3.0":
   version "0.3.1"
   resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.3.1.tgz#c72a5c76a9fbaf3488e231b13dc52c0da7bab42a"
@@ -8265,6 +8260,11 @@
   resolved "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz#56e2cc26c397c038fab0e3a917a12d5c5909e901"
   integrity sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==
 
+"@types/parse-author@^2.0.0":
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/@types/parse-author/-/parse-author-2.0.3.tgz#fbf92ab0770f057483ba535c3087664f4b2800d5"
+  integrity sha512-pgRW2K/GVQoogylrGJXDl7PBLW9A6T4OOc9Hy9MLT5f7vgufK2GQ8FcfAbjFHR5HjcN9ByzuCczAORk49REqoA==
+
 "@types/parse-glob@3.0.29":
   version "3.0.29"
   resolved "https://registry.yarnpkg.com/@types/parse-glob/-/parse-glob-3.0.29.tgz#6a40ec7ebd2418ee69ee397e48e42169268a10bf"
@@ -10078,7 +10078,7 @@ ajv@8.12.0:
     require-from-string "^2.0.2"
     uri-js "^4.2.2"
 
-ajv@8.17.1, ajv@^8.0.0, ajv@^8.2.0, ajv@^8.6.2, ajv@^8.9.0:
+ajv@8.17.1, ajv@^8.0.0, ajv@^8.6.2, ajv@^8.9.0:
   version "8.17.1"
   resolved "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6"
   integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==
@@ -11197,17 +11197,6 @@ before-after-hook@^2.2.0:
   resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.2.tgz#a6e8ca41028d90ee2c24222f201c90956091613e"
   integrity sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==
 
-better-ajv-errors@^1.2.0:
-  version "1.2.0"
-  resolved "https://registry.yarnpkg.com/better-ajv-errors/-/better-ajv-errors-1.2.0.tgz#6412d58fa4d460ff6ccbd9e65c5fef9781cc5286"
-  integrity sha512-UW+IsFycygIo7bclP9h5ugkNH8EjCSgqyFB/yQ4Hqqa1OEYDtb0uFIkYE0b6+CjkgJYVM5UKI/pJPxjYe9EZlA==
-  dependencies:
-    "@babel/code-frame" "^7.16.0"
-    "@humanwhocodes/momoa" "^2.0.2"
-    chalk "^4.1.2"
-    jsonpointer "^5.0.0"
-    leven "^3.1.0 < 4"
-
 better-sqlite3@11.5.0:
   version "11.5.0"
   resolved "https://registry.yarnpkg.com/better-sqlite3/-/better-sqlite3-11.5.0.tgz#58faa51e02845a578dd154f0083487132ead0695"
@@ -12986,7 +12975,7 @@ commander@^10.0.0, commander@^10.0.1:
   resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06"
   integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==
 
-commander@^4.0.0, commander@^4.1.1:
+commander@^4.0.0, commander@^4.0.1, commander@^4.1.1:
   version "4.1.1"
   resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
   integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
@@ -14500,11 +14489,6 @@ detect-libc@^2.0.0, detect-libc@^2.0.1:
   resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.2.tgz#8ccf2ba9315350e1241b88d0ac3b0e1fbd99605d"
   integrity sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==
 
-detect-newline@3.1.0:
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651"
-  integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==
-
 detect-node-es@^1.0.0:
   version "1.0.0"
   resolved "https://registry.yarnpkg.com/detect-node-es/-/detect-node-es-1.0.0.tgz#c0318b9e539a5256ca780dd9575c9345af05b8ed"
@@ -15934,18 +15918,6 @@ eslint-plugin-cypress@^4.1.0:
   dependencies:
     globals "^15.11.0"
 
-eslint-plugin-json-files@^4.4.2:
-  version "4.4.2"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-json-files/-/eslint-plugin-json-files-4.4.2.tgz#64a4ecb80b69273d61032767a7143bfc12c6ba46"
-  integrity sha512-P+bNyzNmz/ia5JmEAjZAwsnMjrm/Zffxlpj3fz+LgF/Ka8qm2bopJIvqiCaBly0wjdy3XYOGQVZzfjefPsHClw==
-  dependencies:
-    ajv "^8.2.0"
-    better-ajv-errors "^1.2.0"
-    fast-glob "^3.3.2"
-    requireindex "^1.2.0"
-    semver "^7.0.0"
-    sort-package-json "^1.22.1"
-
 eslint-plugin-mocha@^10.5.0:
   version "10.5.0"
   resolved "https://registry.yarnpkg.com/eslint-plugin-mocha/-/eslint-plugin-mocha-10.5.0.tgz#0aca8d709e7cddef566e0dc252f6b02e307a2b7e"
@@ -17859,11 +17831,6 @@ gifwrap@^0.10.1:
     image-q "^4.0.0"
     omggif "^1.0.10"
 
-git-hooks-list@1.0.3:
-  version "1.0.3"
-  resolved "https://registry.yarnpkg.com/git-hooks-list/-/git-hooks-list-1.0.3.tgz#be5baaf78203ce342f2f844a9d2b03dba1b45156"
-  integrity sha512-Y7wLWcrLUXwk2noSka166byGCvhMtDRpgHdzCno1UQv/n/Hegp++a2xBWJL1lJarnKD3SWaljD+0z1ztqxuKyQ==
-
 git-log-parser@^1.2.0:
   version "1.2.0"
   resolved "https://registry.yarnpkg.com/git-log-parser/-/git-log-parser-1.2.0.tgz#2e6a4c1b13fc00028207ba795a7ac31667b9fd4a"
@@ -18193,20 +18160,6 @@ globalthis@^1.0.1, globalthis@^1.0.4:
     define-properties "^1.2.1"
     gopd "^1.0.1"
 
-globby@10.0.0:
-  version "10.0.0"
-  resolved "https://registry.yarnpkg.com/globby/-/globby-10.0.0.tgz#abfcd0630037ae174a88590132c2f6804e291072"
-  integrity sha512-3LifW9M4joGZasyYPz2A1U74zbC/45fvpXUvO/9KbSa+VV0aGZarWkfdgKyR9sExNP0t0x0ss/UMJpNpcaTspw==
-  dependencies:
-    "@types/glob" "^7.1.1"
-    array-union "^2.1.0"
-    dir-glob "^3.0.1"
-    fast-glob "^3.0.3"
-    glob "^7.1.3"
-    ignore "^5.1.1"
-    merge2 "^1.2.3"
-    slash "^3.0.0"
-
 globby@10.0.1, globby@^10.0.1:
   version "10.0.1"
   resolved "https://registry.yarnpkg.com/globby/-/globby-10.0.1.tgz#4782c34cb75dd683351335c5829cc3420e606b22"
@@ -20046,16 +19999,16 @@ is-path-inside@^3.0.2:
   resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
   integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
 
-is-plain-obj@2.1.0, is-plain-obj@^2.1.0:
-  version "2.1.0"
-  resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
-  integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
-
 is-plain-obj@^1.0.0, is-plain-obj@^1.1.0:
   version "1.1.0"
   resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
   integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4=
 
+is-plain-obj@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
+  integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
+
 is-plain-obj@^3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7"
@@ -20840,11 +20793,6 @@ jsonparse@^1.2.0, jsonparse@^1.3.1:
   resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280"
   integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=
 
-jsonpointer@^5.0.0:
-  version "5.0.1"
-  resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.1.tgz#2110e0af0900fd37467b5907ecd13a7884a1b559"
-  integrity sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==
-
 jsonwebtoken@^8.5.1:
   version "8.5.1"
   resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz#00e71e0b8df54c2121a1f26137df2280673bcc0d"
@@ -21260,11 +21208,6 @@ levelup@^0.18.2:
     semver "~2.3.1"
     xtend "~3.0.0"
 
-"leven@^3.1.0 < 4":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
-  integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
-
 levn@^0.4.1:
   version "0.4.1"
   resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
@@ -26185,7 +26128,22 @@ prepend-http@^2.0.0:
   resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897"
   integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=
 
-prettier@2.8.8, prettier@^2.0.1:
+prettier-package-json@^2.8.0:
+  version "2.8.0"
+  resolved "https://registry.yarnpkg.com/prettier-package-json/-/prettier-package-json-2.8.0.tgz#70aba2b4f7aeb4e294ae2191fb64b7d8fdea0398"
+  integrity sha512-WxtodH/wWavfw3MR7yK/GrS4pASEQ+iSTkdtSxPJWvqzG55ir5nvbLt9rw5AOiEcqqPCRM92WCtR1rk3TG3JSQ==
+  dependencies:
+    "@types/parse-author" "^2.0.0"
+    commander "^4.0.1"
+    cosmiconfig "^7.0.0"
+    fs-extra "^10.0.0"
+    glob "^7.1.6"
+    minimatch "^3.0.4"
+    parse-author "^2.0.0"
+    sort-object-keys "^1.1.3"
+    sort-order "^1.0.1"
+
+prettier@2.8.8, prettier@^2.0.1, prettier@^2.8.8:
   version "2.8.8"
   resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da"
   integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==
@@ -27535,11 +27493,6 @@ require-main-filename@^2.0.0:
   resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
   integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
 
-requireindex@^1.2.0:
-  version "1.2.0"
-  resolved "https://registry.yarnpkg.com/requireindex/-/requireindex-1.2.0.tgz#3463cdb22ee151902635aa6c9535d4de9c2ef1ef"
-  integrity sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==
-
 requires-port@^1.0.0:
   version "1.0.0"
   resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
@@ -29244,17 +29197,10 @@ sort-object-keys@^1.1.3:
   resolved "https://registry.yarnpkg.com/sort-object-keys/-/sort-object-keys-1.1.3.tgz#bff833fe85cab147b34742e45863453c1e190b45"
   integrity sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==
 
-sort-package-json@^1.22.1:
-  version "1.57.0"
-  resolved "https://registry.yarnpkg.com/sort-package-json/-/sort-package-json-1.57.0.tgz#e95fb44af8ede0bb6147e3f39258102d4bb23fc4"
-  integrity sha512-FYsjYn2dHTRb41wqnv+uEqCUvBpK3jZcTp9rbz2qDTmel7Pmdtf+i2rLaaPMRZeSVM60V3Se31GyWFpmKs4Q5Q==
-  dependencies:
-    detect-indent "^6.0.0"
-    detect-newline "3.1.0"
-    git-hooks-list "1.0.3"
-    globby "10.0.0"
-    is-plain-obj "2.1.0"
-    sort-object-keys "^1.1.3"
+sort-order@^1.0.1:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/sort-order/-/sort-order-1.1.2.tgz#c02240cfb474889ea2e5d7a13e6e2b0877c7b732"
+  integrity sha512-Q8tOrwB1TSv9fNUXym9st3TZJODtmcOIi2JWCkVNQPrRg17KPwlpwweTEb7pMwUIFMTAgx2/JsQQXEPFzYQj3A==
 
 source-list-map@^2.0.0:
   version "2.0.1"

From 66b69a22bdb2e74d404985f518b0410cd2f57510 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacieprins@users.noreply.github.com>
Date: Tue, 21 Jan 2025 12:00:27 -0500
Subject: [PATCH 111/127] Update package.json

---
 package.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package.json b/package.json
index d1a4f2d6ed24..682703bf8452 100644
--- a/package.json
+++ b/package.json
@@ -53,7 +53,7 @@
     "get-next-version": "node scripts/get-next-version.js",
     "gulp:debug": "node --inspect-brk ./node_modules/.bin/gulp",
     "postinstall": "node ./scripts/run-postInstall.js",
-    "lint": "lerna run lint --concurrency 8",
+    "lint": "lerna run lint --concurrency 2",
     "npm-release": "node scripts/npm-release.js",
     "prepare": "husky install",
     "prepare-release-artifacts": "node ./scripts/prepare-release-artifacts.js",

From 3a27427564192d302b7ad47bd1ebbf3d53e98d8c Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 21 Jan 2025 15:34:06 -0500
Subject: [PATCH 112/127] ignore .d.ts files in system-tests

---
 system-tests/eslint.config.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/system-tests/eslint.config.ts b/system-tests/eslint.config.ts
index 03c0e66d4708..f04cb632aaba 100644
--- a/system-tests/eslint.config.ts
+++ b/system-tests/eslint.config.ts
@@ -3,7 +3,7 @@ import globals from 'globals'
 
 export default [
   ...baseConfig,
-  { ignores: ['project-fixtures/**/*', 'projects/**/*'] },
+  { ignores: ['project-fixtures/**/*', 'projects/**/*', '/**/*.d.ts'] },
   {
     languageOptions: {
       parserOptions: {

From 9f30b8543df63cfd138ef8eab993e310aa9d4c19 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 22 Jan 2025 09:13:46 -0500
Subject: [PATCH 113/127] ignore validations in system tests

---
 system-tests/eslint.config.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/system-tests/eslint.config.ts b/system-tests/eslint.config.ts
index f04cb632aaba..b5010edd4854 100644
--- a/system-tests/eslint.config.ts
+++ b/system-tests/eslint.config.ts
@@ -3,7 +3,7 @@ import globals from 'globals'
 
 export default [
   ...baseConfig,
-  { ignores: ['project-fixtures/**/*', 'projects/**/*', '/**/*.d.ts'] },
+  { ignores: ['project-fixtures/**/*', 'projects/**/*', 'lib/validations/**/*', 'lib/fixtureDirs.ts'] },
   {
     languageOptions: {
       parserOptions: {

From 5e87c062e3e47e7b8a48a638da22a10ed73ce423 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 20 Feb 2025 10:28:34 -0500
Subject: [PATCH 114/127] import-x plugins

---
 eslint.config.ts             | 10 ++++++++++
 package.json                 |  2 ++
 packages/app/vite.config.mjs |  4 ++--
 3 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/eslint.config.ts b/eslint.config.ts
index 19646fb94ffb..99c8449716bf 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -9,6 +9,7 @@ import vue from 'eslint-plugin-vue'
 import stylistic from '@stylistic/eslint-plugin'
 import * as graphql from '@graphql-eslint/eslint-plugin'
 import react from 'eslint-plugin-react'
+import eslintPluginImportX from 'eslint-plugin-import-x'
 
 /**
  * baseConfig should be imported by other packages that define their own eslint.config.ts
@@ -25,6 +26,8 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
   cy.configs.recommended,
   mocha.configs.flat.recommended,
   ...vue.configs['flat/recommended'],
+  eslintPluginImportX.flatConfigs.recommended,
+  eslintPluginImportX.flatConfigs.typescript,
   {
     ...react.configs.flat.recommended,
     settings: {
@@ -236,6 +239,13 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       // we use react 18+, so these rules do not apply
       'react/react-in-jsx-scope': 'off',
       'react/jsx-uses-react': 'off',
+
+      // some import-x rules are off rather than warn, because they can be a little bit noisy in stdout
+      'import-x/namespace': 'off', // sometimes we import modules as namespaces when we don't intend to, e.g. `import * as sinon from 'sinon'`
+      'import-x/no-unresolved': 'off', // import-x has trouble resolving some things, like css from .vue
+      'import-x/no-named-as-default-member': 'off', // e.g., import foo from 'foo'; foo.bar(); will error when `bar` is a named export
+      'import-x/default': 'off',
+      'import-x/export': 'off',
     },
   },
 
diff --git a/package.json b/package.json
index 6279c379261f..9bdc1a88b21f 100644
--- a/package.json
+++ b/package.json
@@ -192,7 +192,9 @@
     "electron-builder": "^25.1.8",
     "enzyme-adapter-react-16": "1.12.1",
     "eslint": "^9.18.0",
+    "eslint-import-resolver-typescript": "3.8.3",
     "eslint-plugin-cypress": "^4.1.0",
+    "eslint-plugin-import-x": "^4.6.1",
     "eslint-plugin-mocha": "^10.5.0",
     "eslint-plugin-react": "^7.37.4",
     "eslint-plugin-vue": "^9.32.0",
diff --git a/packages/app/vite.config.mjs b/packages/app/vite.config.mjs
index bd16a2cef74a..43d533554bca 100644
--- a/packages/app/vite.config.mjs
+++ b/packages/app/vite.config.mjs
@@ -46,8 +46,8 @@ const config = makeConfig({
   ],
 })
 
-// With some trial and error, it appears that the module federation plugin needs to be added 
-// to the plugins array first so that the dynamic modules are available properly with respect 
+// With some trial and error, it appears that the module federation plugin needs to be added
+// to the plugins array first so that the dynamic modules are available properly with respect
 // to the other plugins.
 config.plugins.unshift(
   ...federation({

From 77cde45a32a5933618df3f574ebb5809149b43ed Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 20 Feb 2025 14:53:44 -0500
Subject: [PATCH 115/127] clear errors

---
 packages/app/eslint.config.ts         | 5 +++++
 packages/driver/cypress/tsconfig.json | 5 +++--
 packages/driver/eslint.config.ts      | 2 +-
 packages/driver/tsconfig.json         | 2 +-
 packages/runner/tsconfig.json         | 3 ++-
 5 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/packages/app/eslint.config.ts b/packages/app/eslint.config.ts
index 55e487ae2208..a07258dec1d7 100644
--- a/packages/app/eslint.config.ts
+++ b/packages/app/eslint.config.ts
@@ -5,6 +5,10 @@ import react from 'eslint-plugin-react'
 export default [
   ...baseConfig,
 
+  {
+    ignores: ['.__mf__temp/**/*'],
+  },
+
   {
     languageOptions: {
       parserOptions: {
@@ -23,6 +27,7 @@ export default [
       },
     },
   },
+
   {
     files: ['vite.config.mjs'],
     languageOptions: {
diff --git a/packages/driver/cypress/tsconfig.json b/packages/driver/cypress/tsconfig.json
index 3674b72ac83b..793de122860f 100644
--- a/packages/driver/cypress/tsconfig.json
+++ b/packages/driver/cypress/tsconfig.json
@@ -5,7 +5,8 @@
     "types": [
       "cypress",
       "node"
-    ]
+    ],
+    "allowJs": true
   },
-  "include": ["**/*.ts"]
+  "include": ["**/*.ts", "**/*.js"]
 }
\ No newline at end of file
diff --git a/packages/driver/eslint.config.ts b/packages/driver/eslint.config.ts
index 02b321d1682d..1a527007307f 100644
--- a/packages/driver/eslint.config.ts
+++ b/packages/driver/eslint.config.ts
@@ -10,7 +10,7 @@ export default [
     languageOptions: {
       parserOptions: {
         projectService: {
-          allowDefaultProject: ['index.d.ts', 'cypress/e2e/e2e/origin/dependencies.cy.jsx', 'src/cypress/setter_getter.d.ts'],
+          allowDefaultProject: ['index.d.ts', 'cypress/e2e/e2e/origin/dependencies.cy.jsx', 'src/cypress/setter_getter.d.ts', 'vite.config.mjs', 'vitest.config.mjs'],
         },
       },
       globals: {
diff --git a/packages/driver/tsconfig.json b/packages/driver/tsconfig.json
index 1a17124e830b..6bd8ed7b9596 100644
--- a/packages/driver/tsconfig.json
+++ b/packages/driver/tsconfig.json
@@ -11,7 +11,7 @@
     "outDir": "dist",
     "noErrorTruncation": true,
     "types": [],
-    "resolveJsonModule": true
+    "resolveJsonModule": true,
   },
   "exclude": [
     "dist",
diff --git a/packages/runner/tsconfig.json b/packages/runner/tsconfig.json
index 07ad26bbf33b..30500b756fd1 100644
--- a/packages/runner/tsconfig.json
+++ b/packages/runner/tsconfig.json
@@ -13,7 +13,8 @@
       "cypress-real-events",
       "react",
     ],                           /* Type declaration files to be included in compilation. */
-    "noErrorTruncation": true
+    "noErrorTruncation": true,
+    "allowJs": true
   },
   "exclude": [
     "dist",

From c173de4d8318caa0b776a6ce2431a5f8dc4533ac Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 20 Feb 2025 15:08:18 -0500
Subject: [PATCH 116/127] yarn lock

---
 yarn.lock | 174 +++++++++++++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 158 insertions(+), 16 deletions(-)

diff --git a/yarn.lock b/yarn.lock
index 5d7c1b1136df..6934ecae87e0 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -5212,6 +5212,11 @@
     "@nodelib/fs.scandir" "2.1.5"
     fastq "^1.6.0"
 
+"@nolyfill/is-core-module@1.0.39":
+  version "1.0.39"
+  resolved "https://registry.yarnpkg.com/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz#3dc35ba0f1e66b403c00b39344f870298ebb1c8e"
+  integrity sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==
+
 "@npmcli/agent@^2.0.0":
   version "2.2.2"
   resolved "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.2.tgz#967604918e62f620a648c7975461c9c9e74fc5d5"
@@ -7891,6 +7896,11 @@
   resolved "https://registry.yarnpkg.com/@types/doctrine/-/doctrine-0.0.6.tgz#12ede1f7cd3797be5856277c85f031299ccd2641"
   integrity sha512-KlEqPtaNBHBJ2/fVA4yLdD0Tc8zw34pKU4K5SHBIEwtLJ8xxumIC1xeG+4S+/9qhVj2MqC7O3Ld8WvDG4HqlgA==
 
+"@types/doctrine@^0.0.9":
+  version "0.0.9"
+  resolved "https://registry.yarnpkg.com/@types/doctrine/-/doctrine-0.0.9.tgz#d86a5f452a15e3e3113b99e39616a9baa0f9863f"
+  integrity sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==
+
 "@types/ejs@^3.1.2":
   version "3.1.2"
   resolved "https://registry.yarnpkg.com/@types/ejs/-/ejs-3.1.2.tgz#75d277b030bc11b3be38c807e10071f45ebc78d9"
@@ -8830,6 +8840,14 @@
     "@typescript-eslint/types" "8.20.0"
     "@typescript-eslint/visitor-keys" "8.20.0"
 
+"@typescript-eslint/scope-manager@8.24.1", "@typescript-eslint/scope-manager@^8.1.0":
+  version "8.24.1"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.24.1.tgz#1e1e76ec4560aa85077ab36deb9b2bead4ae124e"
+  integrity sha512-OdQr6BNBzwRjNEXMQyaGyZzgg7wzjYKfX2ZBV3E04hUCBDv3GQCHiz9RpqdUIiVrMgJGkXm3tcEh4vFSHreS2Q==
+  dependencies:
+    "@typescript-eslint/types" "8.24.1"
+    "@typescript-eslint/visitor-keys" "8.24.1"
+
 "@typescript-eslint/type-utils@7.2.0":
   version "7.2.0"
   resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-7.2.0.tgz#7be5c30e9b4d49971b79095a1181324ef6089a19"
@@ -8860,6 +8878,11 @@
   resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.20.0.tgz#487de5314b5415dee075e95568b87a75a3e730cf"
   integrity sha512-cqaMiY72CkP+2xZRrFt3ExRBu0WmVitN/rYPZErA80mHjHx/Svgp8yfbzkJmDoQ/whcytOPO9/IZXnOc+wigRA==
 
+"@typescript-eslint/types@8.24.1":
+  version "8.24.1"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.24.1.tgz#8777a024f3afc4ace5e48f9a804309c6dd38f95a"
+  integrity sha512-9kqJ+2DkUXiuhoiYIUvIYjGcwle8pcPpdlfkemGvTObzgmYfJ5d0Qm6jwb4NBXP9W1I5tss0VIAnWFumz3mC5A==
+
 "@typescript-eslint/typescript-estree@7.2.0":
   version "7.2.0"
   resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-7.2.0.tgz#5beda2876c4137f8440c5a84b4f0370828682556"
@@ -8888,6 +8911,20 @@
     semver "^7.6.0"
     ts-api-utils "^2.0.0"
 
+"@typescript-eslint/typescript-estree@8.24.1":
+  version "8.24.1"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.24.1.tgz#3bb479401f8bd471b3c6dd3db89e7256977c54db"
+  integrity sha512-UPyy4MJ/0RE648DSKQe9g0VDSehPINiejjA6ElqnFaFIhI6ZEiZAkUI0D5MCk0bQcTf/LVqZStvQ6K4lPn/BRg==
+  dependencies:
+    "@typescript-eslint/types" "8.24.1"
+    "@typescript-eslint/visitor-keys" "8.24.1"
+    debug "^4.3.4"
+    fast-glob "^3.3.2"
+    is-glob "^4.0.3"
+    minimatch "^9.0.4"
+    semver "^7.6.0"
+    ts-api-utils "^2.0.1"
+
 "@typescript-eslint/utils@7.2.0":
   version "7.2.0"
   resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-7.2.0.tgz#fc8164be2f2a7068debb4556881acddbf0b7ce2a"
@@ -8901,7 +8938,7 @@
     "@typescript-eslint/typescript-estree" "7.2.0"
     semver "^7.5.4"
 
-"@typescript-eslint/utils@8.20.0", "@typescript-eslint/utils@^8.13.0":
+"@typescript-eslint/utils@8.20.0":
   version "8.20.0"
   resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.20.0.tgz#53127ecd314b3b08836b4498b71cdb86f4ef3aa2"
   integrity sha512-dq70RUw6UK9ei7vxc4KQtBRk7qkHZv447OUZ6RPQMQl71I3NZxQJX/f32Smr+iqWrB02pHKn2yAdHBb0KNrRMA==
@@ -8911,6 +8948,16 @@
     "@typescript-eslint/types" "8.20.0"
     "@typescript-eslint/typescript-estree" "8.20.0"
 
+"@typescript-eslint/utils@^8.1.0", "@typescript-eslint/utils@^8.13.0":
+  version "8.24.1"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.24.1.tgz#08d14eac33cfb3456feeee5a275b8ad3349e52ed"
+  integrity sha512-OOcg3PMMQx9EXspId5iktsI3eMaXVwlhC8BvNnX6B5w9a4dVgpkQZuU8Hy67TolKcl+iFWq0XX+jbDGN4xWxjQ==
+  dependencies:
+    "@eslint-community/eslint-utils" "^4.4.0"
+    "@typescript-eslint/scope-manager" "8.24.1"
+    "@typescript-eslint/types" "8.24.1"
+    "@typescript-eslint/typescript-estree" "8.24.1"
+
 "@typescript-eslint/visitor-keys@7.2.0":
   version "7.2.0"
   resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-7.2.0.tgz#5035f177752538a5750cca1af6044b633610bf9e"
@@ -8927,6 +8974,14 @@
     "@typescript-eslint/types" "8.20.0"
     eslint-visitor-keys "^4.2.0"
 
+"@typescript-eslint/visitor-keys@8.24.1":
+  version "8.24.1"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.24.1.tgz#8bdfe47a89195344b34eb21ef61251562148202b"
+  integrity sha512-EwVHlp5l+2vp8CoqJm9KikPZgi3gbdZAtabKT9KPShGeOcJhsv4Zdo3oc8T8I0uKEmYoU4ItyxbptjF08enaxg==
+  dependencies:
+    "@typescript-eslint/types" "8.24.1"
+    eslint-visitor-keys "^4.2.0"
+
 "@ungap/promise-all-settled@1.1.2":
   version "1.1.2"
   resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44"
@@ -15342,10 +15397,10 @@ enhanced-resolve@^4.5.0:
     memory-fs "^0.5.0"
     tapable "^1.0.0"
 
-enhanced-resolve@^5.0.0, enhanced-resolve@^5.15.0, enhanced-resolve@^5.7.0, enhanced-resolve@^5.9.2:
-  version "5.17.0"
-  resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.17.0.tgz#d037603789dd9555b89aaec7eb78845c49089bc5"
-  integrity sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==
+enhanced-resolve@^5.0.0, enhanced-resolve@^5.15.0, enhanced-resolve@^5.17.1, enhanced-resolve@^5.7.0, enhanced-resolve@^5.9.2:
+  version "5.18.1"
+  resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz#728ab082f8b7b6836de51f1637aab5d3b9568faf"
+  integrity sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==
   dependencies:
     graceful-fs "^4.2.4"
     tapable "^2.2.0"
@@ -15991,6 +16046,28 @@ escodegen@^2.1.0:
   optionalDependencies:
     source-map "~0.6.1"
 
+eslint-import-resolver-node@^0.3.9:
+  version "0.3.9"
+  resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz#d4eaac52b8a2e7c3cd1903eb00f7e053356118ac"
+  integrity sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==
+  dependencies:
+    debug "^3.2.7"
+    is-core-module "^2.13.0"
+    resolve "^1.22.4"
+
+eslint-import-resolver-typescript@3.8.3:
+  version "3.8.3"
+  resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.8.3.tgz#1721a1e4417e57a8fe6bf9463d0db8e220285eef"
+  integrity sha512-A0bu4Ks2QqDWNpeEgTQMPTngaMhuDu4yv6xpftBMAf+1ziXnpx+eSR1WRfoPTe2BAiAjHFZ7kSNx1fvr5g5pmQ==
+  dependencies:
+    "@nolyfill/is-core-module" "1.0.39"
+    debug "^4.3.7"
+    enhanced-resolve "^5.15.0"
+    get-tsconfig "^4.10.0"
+    is-bun-module "^1.0.2"
+    stable-hash "^0.0.4"
+    tinyglobby "^0.2.12"
+
 eslint-module-utils@^2.1.1:
   version "2.8.1"
   resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz#52f2404300c3bd33deece9d7372fb337cc1d7c34"
@@ -16005,6 +16082,25 @@ eslint-plugin-cypress@^4.1.0:
   dependencies:
     globals "^15.11.0"
 
+eslint-plugin-import-x@^4.6.1:
+  version "4.6.1"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-import-x/-/eslint-plugin-import-x-4.6.1.tgz#2fdb9a25addd92247f5d9b198bfa654eeaea2f52"
+  integrity sha512-wluSUifMIb7UfwWXqx7Yx0lE/SGCcGXECLx/9bCmbY2nneLwvAZ4vkd1IXDjPKFvdcdUgr1BaRnaRpx3k2+Pfw==
+  dependencies:
+    "@types/doctrine" "^0.0.9"
+    "@typescript-eslint/scope-manager" "^8.1.0"
+    "@typescript-eslint/utils" "^8.1.0"
+    debug "^4.3.4"
+    doctrine "^3.0.0"
+    enhanced-resolve "^5.17.1"
+    eslint-import-resolver-node "^0.3.9"
+    get-tsconfig "^4.7.3"
+    is-glob "^4.0.3"
+    minimatch "^9.0.3"
+    semver "^7.6.3"
+    stable-hash "^0.0.4"
+    tslib "^2.6.3"
+
 eslint-plugin-mocha@^10.5.0:
   version "10.5.0"
   resolved "https://registry.yarnpkg.com/eslint-plugin-mocha/-/eslint-plugin-mocha-10.5.0.tgz#0aca8d709e7cddef566e0dc252f6b02e307a2b7e"
@@ -16886,6 +16982,11 @@ fd-slicer@~1.1.0:
   dependencies:
     pend "~1.2.0"
 
+fdir@^6.4.3:
+  version "6.4.3"
+  resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.4.3.tgz#011cdacf837eca9b811c89dbb902df714273db72"
+  integrity sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==
+
 fetch-blob@^3.1.2, fetch-blob@^3.1.4:
   version "3.2.0"
   resolved "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9"
@@ -17813,6 +17914,13 @@ get-symbol-description@^1.1.0:
     es-errors "^1.3.0"
     get-intrinsic "^1.2.6"
 
+get-tsconfig@^4.10.0, get-tsconfig@^4.7.3:
+  version "4.10.0"
+  resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.10.0.tgz#403a682b373a823612475a4c2928c7326fc0f6bb"
+  integrity sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==
+  dependencies:
+    resolve-pkg-maps "^1.0.0"
+
 get-uri@^6.0.1:
   version "6.0.1"
   resolved "https://registry.yarnpkg.com/get-uri/-/get-uri-6.0.1.tgz#cff2ba8d456c3513a04b70c45de4dbcca5b1527c"
@@ -19664,6 +19772,13 @@ is-buffer@~2.0.3:
   resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191"
   integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==
 
+is-bun-module@^1.0.2:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/is-bun-module/-/is-bun-module-1.3.0.tgz#ea4d24fdebfcecc98e81bcbcb506827fee288760"
+  integrity sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==
+  dependencies:
+    semver "^7.6.3"
+
 is-callable@^1.1.3, is-callable@^1.2.7:
   version "1.2.7"
   resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
@@ -19690,12 +19805,12 @@ is-cidr@^5.1.0:
   dependencies:
     cidr-regex "^4.1.1"
 
-is-core-module@^2.13.0, is-core-module@^2.5.0:
-  version "2.13.1"
-  resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384"
-  integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==
+is-core-module@^2.13.0, is-core-module@^2.16.0, is-core-module@^2.5.0:
+  version "2.16.1"
+  resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.1.tgz#2a98801a849f43e2add644fbb6bc6229b19a4ef4"
+  integrity sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==
   dependencies:
-    hasown "^2.0.0"
+    hasown "^2.0.2"
 
 is-data-descriptor@^0.1.4:
   version "0.1.4"
@@ -27644,6 +27759,11 @@ resolve-package-path@4.0.3, resolve-package-path@^4.0.3:
   dependencies:
     path-root "^0.1.1"
 
+resolve-pkg-maps@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f"
+  integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==
+
 resolve-pkg@2.0.0, resolve-pkg@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/resolve-pkg/-/resolve-pkg-2.0.0.tgz#ac06991418a7623edc119084edc98b0e6bf05a41"
@@ -27679,7 +27799,7 @@ resolve@1.17.0:
   dependencies:
     path-parse "^1.0.6"
 
-resolve@1.22.8, resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.11.1, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.1, resolve@^1.22.8, resolve@^1.3.2, resolve@^1.4.0:
+resolve@1.22.8:
   version "1.22.8"
   resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d"
   integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==
@@ -27693,6 +27813,15 @@ resolve@^0.6.3:
   resolved "https://registry.yarnpkg.com/resolve/-/resolve-0.6.3.tgz#dd957982e7e736debdf53b58a4dd91754575dd46"
   integrity sha1-3ZV5gufnNt699TtYpN2RdUV13UY=
 
+resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.11.1, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.1, resolve@^1.22.4, resolve@^1.22.8, resolve@^1.3.2, resolve@^1.4.0:
+  version "1.22.10"
+  resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.10.tgz#b663e83ffb09bbf2386944736baae803029b8b39"
+  integrity sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==
+  dependencies:
+    is-core-module "^2.16.0"
+    path-parse "^1.0.7"
+    supports-preserve-symlinks-flag "^1.0.0"
+
 resolve@^2.0.0-next.5:
   version "2.0.0-next.5"
   resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.5.tgz#6b0ec3107e671e52b68cd068ef327173b90dc03c"
@@ -29551,6 +29680,11 @@ ssri@^9.0.0:
   dependencies:
     minipass "^3.1.1"
 
+stable-hash@^0.0.4:
+  version "0.0.4"
+  resolved "https://registry.yarnpkg.com/stable-hash/-/stable-hash-0.0.4.tgz#55ae7dadc13e4b3faed13601587cec41859b42f7"
+  integrity sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==
+
 stack-trace@0.0.10:
   version "0.0.10"
   resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0"
@@ -30752,6 +30886,14 @@ tinyexec@^0.3.1:
   resolved "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.1.tgz#0ab0daf93b43e2c211212396bdb836b468c97c98"
   integrity sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==
 
+tinyglobby@^0.2.12:
+  version "0.2.12"
+  resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.12.tgz#ac941a42e0c5773bd0b5d08f32de82e74a1a61b5"
+  integrity sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==
+  dependencies:
+    fdir "^6.4.3"
+    picomatch "^4.0.2"
+
 tinypool@^1.0.1:
   version "1.0.1"
   resolved "https://registry.npmjs.org/tinypool/-/tinypool-1.0.1.tgz#c64233c4fac4304e109a64340178760116dbe1fe"
@@ -31013,10 +31155,10 @@ ts-api-utils@^1.0.1:
   resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.3.0.tgz#4b490e27129f1e8e686b45cc4ab63714dc60eea1"
   integrity sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==
 
-ts-api-utils@^2.0.0:
-  version "2.0.0"
-  resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.0.0.tgz#b9d7d5f7ec9f736f4d0f09758b8607979044a900"
-  integrity sha512-xCt/TOAc+EOHS1XPnijD3/yzpH6qg2xppZO1YDqGoVsNXfQfzHpOdNuXwrwOU8u4ITXJyDCTyt8w5g1sZv9ynQ==
+ts-api-utils@^2.0.0, ts-api-utils@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.0.1.tgz#660729385b625b939aaa58054f45c058f33f10cd"
+  integrity sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==
 
 ts-interface-checker@^0.1.9:
   version "0.1.13"
@@ -31119,7 +31261,7 @@ tslib@^1.0.0, tslib@^1.10.0, tslib@^1.11.1, tslib@^1.13.0, tslib@^1.8.0, tslib@^
   resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
   integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
 
-tslib@^2.0.0, tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.4.1, tslib@^2.5.0, tslib@^2.6.2, tslib@^2.7.0, tslib@^2.8.1:
+tslib@^2.0.0, tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.4.1, tslib@^2.5.0, tslib@^2.6.2, tslib@^2.6.3, tslib@^2.7.0, tslib@^2.8.1:
   version "2.8.1"
   resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f"
   integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==

From adeffe10315c38412f87cf7a8e4ba98eac21e4e9 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 20 Feb 2025 16:05:04 -0500
Subject: [PATCH 117/127] warn on extraneous imports

---
 eslint.config.ts                         | 1 +
 packages/server/lib/modes/interactive.ts | 2 +-
 packages/ts/.eslintignore                | 6 ------
 3 files changed, 2 insertions(+), 7 deletions(-)
 delete mode 100644 packages/ts/.eslintignore

diff --git a/eslint.config.ts b/eslint.config.ts
index 99c8449716bf..4f1e6b9681b1 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -246,6 +246,7 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       'import-x/no-named-as-default-member': 'off', // e.g., import foo from 'foo'; foo.bar(); will error when `bar` is a named export
       'import-x/default': 'off',
       'import-x/export': 'off',
+      'import-x/no-extraneous-dependencies': 'warn',
     },
   },
 
diff --git a/packages/server/lib/modes/interactive.ts b/packages/server/lib/modes/interactive.ts
index ae99c9551e23..279f34995c98 100644
--- a/packages/server/lib/modes/interactive.ts
+++ b/packages/server/lib/modes/interactive.ts
@@ -1,6 +1,6 @@
 import _ from 'lodash'
 import os from 'os'
-// tslint:disable-next-line no-implicit-dependencies - electron dep needs to be defined
+
 import { app, nativeImage as image } from 'electron'
 
 import * as cyIcons from '@packages/icons'
diff --git a/packages/ts/.eslintignore b/packages/ts/.eslintignore
deleted file mode 100644
index 2255e970fb68..000000000000
--- a/packages/ts/.eslintignore
+++ /dev/null
@@ -1,6 +0,0 @@
-**/dist
-**/*.d.ts
-**/package-lock.json
-**/tsconfig.json
-**/cypress/fixtures
-**/__snapshots__

From e6cae1d793bdcedceb55973f808ee937f9b7a862 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Thu, 20 Feb 2025 16:14:36 -0500
Subject: [PATCH 118/127] get rid of tslint

---
 packages/app/package.json                 |  3 +--
 packages/config/package.json              |  5 ++---
 packages/data-context/package.json        |  8 +++-----
 packages/driver/package.json              |  5 ++---
 packages/errors/package.json              |  5 ++---
 packages/extension/package.json           |  3 +--
 packages/frontend-shared/package.json     |  2 +-
 packages/graphql/package.json             |  8 +++-----
 packages/icons/package.json               |  3 +--
 packages/launcher/package.json            |  5 ++---
 packages/launchpad/package.json           |  3 +--
 packages/net-stubbing/package.json        |  2 +-
 packages/network/package.json             |  5 ++---
 packages/packherd-require/package.json    | 17 ++++++++---------
 packages/proxy/package.json               |  5 ++---
 packages/reporter/package.json            |  2 +-
 packages/resolve-dist/package.json        |  2 +-
 packages/rewriter/package.json            |  2 +-
 packages/runner/package.json              |  2 +-
 packages/scaffold-config/package.json     |  5 ++---
 packages/server/package.json              |  6 ++----
 packages/socket/package.json              |  5 ++---
 packages/telemetry/package.json           | 17 ++++++++---------
 packages/v8-snapshot-require/package.json |  3 +--
 24 files changed, 51 insertions(+), 72 deletions(-)

diff --git a/packages/app/package.json b/packages/app/package.json
index 3400723faf9d..eec633f5b2c8 100644
--- a/packages/app/package.json
+++ b/packages/app/package.json
@@ -7,7 +7,7 @@
   ],
   "scripts": {
     "build": "vite build",
-    "check-ts": "vue-tsc --noEmit && yarn -s tslint",
+    "check-ts": "vue-tsc --noEmit",
     "clean": "rimraf dist && echo 'cleaned'",
     "clean-deps": "rimraf node_modules",
     "cypress:launch": "yarn cypress:run-cypress-in-cypress gulp open --project .",
@@ -20,7 +20,6 @@
     "lint": "eslint .",
     "start": "echo \"run 'yarn dev' or 'yarn watch' from the root\" && exit 1",
     "test": "echo 'ok'",
-    "tslint": "tslint --config ../ts/tslint.json --project . --exclude ./src/router/router.ts, *.gen.ts",
     "watch": "echo \"run 'yarn dev' or 'yarn watch' from the root\" && exit 1"
   },
   "dependencies": {},
diff --git a/packages/config/package.json b/packages/config/package.json
index f8487cc6014d..44ba3514c049 100644
--- a/packages/config/package.json
+++ b/packages/config/package.json
@@ -10,15 +10,14 @@
   ],
   "scripts": {
     "build-prod": "tsc || echo 'built, with errors'",
-    "check-ts": "tsc --noEmit && yarn -s tslint",
+    "check-ts": "tsc --noEmit",
     "clean": "rimraf --glob ./src/*.js ./src/**/*.js ./src/**/**/*.js ./test/!**__fixtures__**/**/*.js || echo 'cleaned'",
     "clean-deps": "rimraf node_modules",
     "lint": "eslint .",
     "test": "yarn test-unit",
     "test:clean": "find ./test/__fixtures__ -depth -name 'output.*' -type f -exec rm {} \\;",
     "test-debug": "yarn test-unit --inspect-brk=5566",
-    "test-unit": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json -r @packages/ts/register 'test/**/*.spec.ts' --exit --timeout 5000",
-    "tslint": "tslint --config ../ts/tslint.json --project ."
+    "test-unit": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json -r @packages/ts/register 'test/**/*.spec.ts' --exit --timeout 5000"
   },
   "types": "src/index.ts",
   "dependencies": {
diff --git a/packages/data-context/package.json b/packages/data-context/package.json
index 712b816c2cc6..e5bfc728194c 100644
--- a/packages/data-context/package.json
+++ b/packages/data-context/package.json
@@ -10,13 +10,12 @@
   "scripts": {
     "build": "node ./scripts/build.js",
     "build-prod": "tsc || echo 'built, with errors'",
-    "check-ts": "tsc --noEmit && yarn -s tslint",
+    "check-ts": "tsc --noEmit",
     "clean": "rimraf --glob \"./{src,test}/**/*.js\"",
     "clean-deps": "rimraf node_modules",
     "lint": "eslint .",
     "test": "yarn test-unit",
-    "test-unit": "mocha -r @packages/ts/register --config ./test/.mocharc.js --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
-    "tslint": "tslint --config ../ts/tslint.json --project ."
+    "test-unit": "mocha -r @packages/ts/register --config ./test/.mocharc.js --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json"
   },
   "types": "src/index.ts",
   "dependencies": {
@@ -97,8 +96,7 @@
     "mocha-multi-reporters": "1.5.1",
     "nexus": "^1.2.0-next.15",
     "sinon": "13.0.2",
-    "sinon-chai": "3.7.0",
-    "tslint": "^6.1.3"
+    "sinon-chai": "3.7.0"
   },
   "nx": {
     "targets": {
diff --git a/packages/driver/package.json b/packages/driver/package.json
index 0ad3ec1b9787..39d07e26d82c 100644
--- a/packages/driver/package.json
+++ b/packages/driver/package.json
@@ -6,7 +6,7 @@
     "patches"
   ],
   "scripts": {
-    "check-ts": "tsc --noEmit && yarn -s tslint",
+    "check-ts": "tsc --noEmit",
     "clean-deps": "rimraf node_modules",
     "cypress:open": "node ../../scripts/cypress open",
     "cypress:run": "node ../../scripts/cypress run --config-file ./cypress.config.ts",
@@ -15,8 +15,7 @@
     "lint": "eslint .",
     "start": "node -e 'console.log(require(`chalk`).red(`\nError:\n\tRunning \\`yarn start\\` is no longer needed for driver/cypress tests.\n\tWe now automatically spawn the server in e2e.setupNodeEvents config.\n\tChanges to the server will be watched and reloaded automatically.`))'",
     "test": "vitest run",
-    "test:watch": "vitest watch",
-    "tslint": "tslint --config ../ts/tslint.json --project ."
+    "test:watch": "vitest watch"
   },
   "workspaces": {
     "nohoist": [
diff --git a/packages/errors/package.json b/packages/errors/package.json
index edee7a770067..c4a791081a98 100644
--- a/packages/errors/package.json
+++ b/packages/errors/package.json
@@ -11,7 +11,7 @@
   "scripts": {
     "build": "../../scripts/run-if-ci.sh tsc || echo 'type errors'",
     "build-prod": "tsc",
-    "check-ts": "tsc --noEmit && yarn -s tslint",
+    "check-ts": "tsc --noEmit",
     "clean": "rimraf ./src/*.js ./src/**/*.js ./src/**/**/*.js ./test/**/*.js || echo 'cleaned'",
     "clean-deps": "rimraf node_modules",
     "comparison": "node -r @packages/ts/register test/support/error-comparison-tool.ts",
@@ -19,8 +19,7 @@
     "test": "yarn test-unit",
     "test-electron": "HTML_IMAGE_CONVERSION=1 xvfb-maybe electron --no-sandbox ./node_modules/.bin/_mocha",
     "pretest-unit": "yarn clean",
-    "test-unit": "mocha",
-    "tslint": "tslint --config ../ts/tslint.json --project ."
+    "test-unit": "mocha"
   },
   "types": "src/index.ts",
   "dependencies": {
diff --git a/packages/extension/package.json b/packages/extension/package.json
index f85a8a5e31b6..c92ea654bc0d 100644
--- a/packages/extension/package.json
+++ b/packages/extension/package.json
@@ -11,7 +11,7 @@
   ],
   "scripts": {
     "build": "gulp build",
-    "check-ts": "tsc --noEmit && yarn -s tslint",
+    "check-ts": "tsc --noEmit",
     "clean": "gulp clean",
     "clean-deps": "rimraf node_modules",
     "postinstall": "echo '@packages/extension needs: yarn build'",
@@ -20,7 +20,6 @@
     "test-debug": "yarn test-unit --inspect-brk=5566",
     "test-unit": "cross-env NODE_ENV=test mocha -r @packages/ts/register --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
     "test-watch": "yarn test-unit --watch",
-    "tslint": "tslint --config ../ts/tslint.json --project . --exclude ./dist/v2/background.js",
     "watch": "yarn build && chokidar 'app/**/*.*' 'app/*.*' -c 'yarn build'"
   },
   "dependencies": {
diff --git a/packages/frontend-shared/package.json b/packages/frontend-shared/package.json
index 363c08493957..def3a77ecc8a 100644
--- a/packages/frontend-shared/package.json
+++ b/packages/frontend-shared/package.json
@@ -5,7 +5,7 @@
   "module": "es2020",
   "scripts": {
     "build": "node ./script/build.js",
-    "check-ts": "vue-tsc --noEmit && yarn -s tslint",
+    "check-ts": "vue-tsc --noEmit",
     "clean": "rimraf dist ./node_modules/.vite src/*.js src/**/*.js && echo 'cleaned'",
     "clean-deps": "rimraf node_modules",
     "cypress:open": "cross-env TZ=America/New_York node ../../scripts/cypress open --component --project .",
diff --git a/packages/graphql/package.json b/packages/graphql/package.json
index be1e74c9ecec..a1480077ec00 100644
--- a/packages/graphql/package.json
+++ b/packages/graphql/package.json
@@ -11,15 +11,14 @@
   "scripts": {
     "build": "graphql-codegen --config graphql-codegen.yml",
     "build-prod": "tsc || echo 'built, with errors'",
-    "check-ts": "tsc --noEmit && yarn -s tslint",
+    "check-ts": "tsc --noEmit",
     "clean": "rimraf './{src,test}/**/*.js'",
     "clean-deps": "rimraf node_modules",
     "postinstall": "echo '@packages/graphql needs: yarn build'",
     "lint": "eslint .",
     "nexus-build": "ts-node ./scripts/nexus-build.ts",
     "test-integration": "mocha -r @packages/ts/register test/integration/**/*.spec.ts --config ./test/.mocharc.js --exit",
-    "test-unit": "mocha -r @packages/ts/register test/unit/**/*.spec.ts --config ./test/.mocharc.js --exit",
-    "tslint": "tslint --config ../ts/tslint.json --project . --exclude ./src/gen/nxs.gen.ts"
+    "test-unit": "mocha -r @packages/ts/register test/unit/**/*.spec.ts --config ./test/.mocharc.js --exit"
   },
   "types": "src/index.ts",
   "dependencies": {
@@ -63,8 +62,7 @@
     "chokidar": "3.6.0",
     "fs-extra": "9.1.0",
     "mocha": "^8.1.3",
-    "snap-shot-it": "7.9.3",
-    "tslint": "^6.1.3"
+    "snap-shot-it": "7.9.3"
   },
   "nx": {
     "targets": {
diff --git a/packages/icons/package.json b/packages/icons/package.json
index 9ba28fc60c1b..c8f93ef27bf6 100644
--- a/packages/icons/package.json
+++ b/packages/icons/package.json
@@ -14,8 +14,7 @@
     "check-ts": "tsc --noEmit",
     "lint": "eslint .",
     "test": "yarn test-unit",
-    "test-unit": "NODE_ENV=test mocha -r @packages/ts/register test/*.ts",
-    "tslint": "tslint --config ../ts/tslint.json --project ."
+    "test-unit": "NODE_ENV=test mocha -r @packages/ts/register test/*.ts"
   },
   "devDependencies": {
     "@types/mocha": "^8.0.3",
diff --git a/packages/launcher/package.json b/packages/launcher/package.json
index 23a7f0bdf44f..164bb3d7e558 100644
--- a/packages/launcher/package.json
+++ b/packages/launcher/package.json
@@ -8,15 +8,14 @@
   ],
   "scripts": {
     "build-prod": "tsc --project .",
-    "check-ts": "tsc --noEmit && yarn -s tslint",
+    "check-ts": "tsc --noEmit",
     "clean": "rimraf --glob \"lib/*.js\" && rimraf --glob \"lib/**/*.js\" || true",
     "clean-deps": "rimraf node_modules",
     "clean-js": "yarn clean",
     "lint": "eslint .",
     "size": "t=\"cypress-v0.0.0.tgz\"; yarn pack --filename \"${t}\"; wc -c \"cli/${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
     "test": "yarn test-unit",
-    "test-unit": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
-    "tslint": "tslint --config ../ts/tslint.json --project ."
+    "test-unit": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json"
   },
   "types": "index.ts",
   "dependencies": {
diff --git a/packages/launchpad/package.json b/packages/launchpad/package.json
index eabab6d02c95..4aa6360d8b07 100644
--- a/packages/launchpad/package.json
+++ b/packages/launchpad/package.json
@@ -7,7 +7,7 @@
   ],
   "scripts": {
     "build": "vite build",
-    "check-ts": "vue-tsc --noEmit && yarn -s tslint",
+    "check-ts": "vue-tsc --noEmit",
     "clean": "rimraf dist && rimraf dist-e2e && echo 'cleaned'",
     "clean-deps": "rimraf node_modules",
     "cypress:open": "yarn cypress:run-cypress-in-cypress gulp open --project .",
@@ -19,7 +19,6 @@
     "lint": "eslint .",
     "start": "echo 'run yarn dev from the root' && exit 1",
     "test": "yarn cypress:run:ct && yarn types",
-    "tslint": "tslint --config ../ts/tslint.json --project . --exclude ../graphql/src/gen/nxs.gen.ts",
     "watch": "echo 'run yarn dev from the root' && exit 1"
   },
   "dependencies": {},
diff --git a/packages/net-stubbing/package.json b/packages/net-stubbing/package.json
index 72017f362c34..a2f932dc61ac 100644
--- a/packages/net-stubbing/package.json
+++ b/packages/net-stubbing/package.json
@@ -8,7 +8,7 @@
   ],
   "scripts": {
     "build-prod": "tsc --project .",
-    "check-ts": "tsc --noEmit && yarn -s tslint",
+    "check-ts": "tsc --noEmit",
     "clean-deps": "rimraf node_modules",
     "lint": "eslint .",
     "test": "CYPRESS_INTERNAL_ENV=test mocha -r @packages/ts/register --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json --exit test/unit/*"
diff --git a/packages/network/package.json b/packages/network/package.json
index 0c1ba947cf50..17ba6015d281 100644
--- a/packages/network/package.json
+++ b/packages/network/package.json
@@ -8,15 +8,14 @@
   ],
   "scripts": {
     "build-prod": "tsc --project .",
-    "check-ts": "tsc --noEmit && yarn -s tslint",
+    "check-ts": "tsc --noEmit",
     "clean": "rimraf 'lib/**/*.js'",
     "clean-deps": "rimraf node_modules",
     "lint": "eslint .",
     "test": "yarn test-unit",
     "test-debug": "yarn test-unit --inspect-brk=5566",
     "test-unit": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
-    "test-watch": "yarn test-unit --watch",
-    "tslint": "tslint --config ../ts/tslint.json --project ."
+    "test-watch": "yarn test-unit --watch"
   },
   "types": "./lib/index.ts",
   "dependencies": {
diff --git a/packages/packherd-require/package.json b/packages/packherd-require/package.json
index a5ba4284c534..43b53fd5846d 100644
--- a/packages/packherd-require/package.json
+++ b/packages/packherd-require/package.json
@@ -1,20 +1,24 @@
 {
+  "private": true,
   "name": "@packages/packherd-require",
   "version": "0.0.0-development",
   "description": "Loads modules that have been bundled by `@tooling/packherd`.",
-  "private": true,
   "main": "dist/require.js",
+  "files": [
+    "dist",
+    "src/require.ts"
+  ],
   "scripts": {
     "build": "tsc",
-    "check-ts": "tsc --noEmit && yarn -s tslint",
+    "check-ts": "tsc --noEmit",
     "clean": "rimraf dist",
     "clean-deps": "rimraf node_modules",
+    "lint": "eslint .",
     "test": "yarn test-unit",
     "test-unit": "mocha --config ./test/.mocharc.js",
-    "tslint": "tslint --config ../ts/tslint.json --project .",
-    "lint": "eslint .",
     "watch": "tsc --watch"
   },
+  "types": "src/require.ts",
   "dependencies": {
     "convert-source-map": "^1.7.0",
     "debug": "^4.3.4",
@@ -25,10 +29,5 @@
     "esbuild": "^0.15.3",
     "mocha": "7.0.1"
   },
-  "files": [
-    "dist",
-    "src/require.ts"
-  ],
-  "types": "src/require.ts",
   "nx": {}
 }
diff --git a/packages/proxy/package.json b/packages/proxy/package.json
index 91ccfcbe9498..c13ad9408bea 100644
--- a/packages/proxy/package.json
+++ b/packages/proxy/package.json
@@ -8,15 +8,14 @@
   ],
   "scripts": {
     "build-prod": "tsc --project .",
-    "check-ts": "tsc --noEmit && yarn -s tslint",
+    "check-ts": "tsc --noEmit",
     "clean": "rimraf 'lib/**/*.js'",
     "clean-deps": "rimraf node_modules",
     "lint": "eslint .",
     "run-mocha": "mocha -r @packages/ts/register -r test/pretest.ts --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
     "test": "CYPRESS_INTERNAL_ENV=test yarn run-mocha \"test/integration/*.spec.ts\" \"test/unit/**/*.spec.ts\"",
     "test-integration": "CYPRESS_INTERNAL_ENV=test yarn run-mocha \"test/integration/*.spec.ts\"",
-    "test-unit": "CYPRESS_INTERNAL_ENV=test yarn run-mocha \"test/unit/**/*.spec.ts\"",
-    "tslint": "tslint --config ../ts/tslint.json --project ."
+    "test-unit": "CYPRESS_INTERNAL_ENV=test yarn run-mocha \"test/unit/**/*.spec.ts\""
   },
   "types": "./lib/index.ts",
   "workspaces": {
diff --git a/packages/reporter/package.json b/packages/reporter/package.json
index c4a5dd84d1e8..ad836d7cb48d 100644
--- a/packages/reporter/package.json
+++ b/packages/reporter/package.json
@@ -6,7 +6,7 @@
   "files": [],
   "scripts": {
     "build-for-tests": "node ../../scripts/run-webpack",
-    "check-ts": "yarn -s tslint",
+    "check-ts": "echo \"no ts to check\"",
     "clean-deps": "rimraf node_modules",
     "cypress:open": "node ../../scripts/cypress open --project .",
     "cypress:run": "node ../../scripts/cypress run --project .",
diff --git a/packages/resolve-dist/package.json b/packages/resolve-dist/package.json
index 61439c2379ca..07f199528e1d 100644
--- a/packages/resolve-dist/package.json
+++ b/packages/resolve-dist/package.json
@@ -8,7 +8,7 @@
   ],
   "scripts": {
     "build-prod": "tsc --project .",
-    "check-ts": "tsc --noEmit && yarn -s tslint",
+    "check-ts": "tsc --noEmit",
     "clean": "rimraf 'lib/**/*.js'",
     "clean-deps": "rimraf node_modules",
     "lint": "eslint ."
diff --git a/packages/rewriter/package.json b/packages/rewriter/package.json
index 07768505c799..b9c31e25edf2 100644
--- a/packages/rewriter/package.json
+++ b/packages/rewriter/package.json
@@ -9,7 +9,7 @@
   "scripts": {
     "build-prod": "tsc --project .",
     "build-test": "yarn build-prod --noEmit",
-    "check-ts": "tsc --noEmit && yarn -s tslint",
+    "check-ts": "tsc --noEmit",
     "clean": "rimraf 'lib/**/*.js'",
     "clean-deps": "rimraf node_modules",
     "lint": "eslint .",
diff --git a/packages/runner/package.json b/packages/runner/package.json
index 32007b554a02..de88653c7527 100644
--- a/packages/runner/package.json
+++ b/packages/runner/package.json
@@ -10,7 +10,7 @@
     "prebuild": "rimraf ./dist",
     "build": "node ../../scripts/run-webpack",
     "build-prod": "cross-env NODE_ENV=production yarn build",
-    "check-ts": "yarn -s tslint",
+    "check-ts": "echo \"no ts to check\"",
     "clean-deps": "rimraf node_modules",
     "cypress:open": "echo \"These tests have been moved to @packages/app. \" && exit 1",
     "cypress:run": "echo \"These tests have been moved to @packages/app. \" && exit 1",
diff --git a/packages/scaffold-config/package.json b/packages/scaffold-config/package.json
index 0659ef47b0d2..08920a31422f 100644
--- a/packages/scaffold-config/package.json
+++ b/packages/scaffold-config/package.json
@@ -9,13 +9,12 @@
   ],
   "scripts": {
     "build-prod": "tsc || echo 'built, with errors'",
-    "check-ts": "tsc --noEmit && yarn -s tslint",
+    "check-ts": "tsc --noEmit",
     "clean": "rimraf ./src/*.js ./src/**/*.js ./src/**/**/*.js ./test/**/*.js || echo 'cleaned'",
     "clean-deps": "rimraf node_modules",
     "lint": "eslint .",
     "test": "yarn test-unit",
-    "test-unit": "mocha -r @packages/ts/register 'test/unit/**' --config ./test/.mocharc.js --exit --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
-    "tslint": "tslint --config ../ts/tslint.json --project ."
+    "test-unit": "mocha -r @packages/ts/register 'test/unit/**' --config ./test/.mocharc.js --exit --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json"
   },
   "types": "src/index.ts",
   "dependencies": {
diff --git a/packages/server/package.json b/packages/server/package.json
index df8ed8c7ddc7..0b88ddedf63d 100644
--- a/packages/server/package.json
+++ b/packages/server/package.json
@@ -13,7 +13,7 @@
   ],
   "scripts": {
     "build-prod": "tsc || echo 'built, with type errors'",
-    "check-ts": "tsc --noEmit && yarn -s tslint",
+    "check-ts": "tsc --noEmit",
     "clean-deps": "rimraf node_modules",
     "codecov": "codecov",
     "dev": "node index.js",
@@ -27,8 +27,7 @@
     "test-integration": "node ./test/scripts/run.js --glob-in-dir=test/integration",
     "test-performance": "node ./test/scripts/run.js --glob-in-dir=test/performance",
     "test-unit": "node ./test/scripts/run.js --glob-in-dir=test/unit",
-    "test-watch": "./test/scripts/watch test",
-    "tslint": "tslint --config ../ts/tslint.json --project ."
+    "test-watch": "./test/scripts/watch test"
   },
   "types": "index.d.ts",
   "workspaces": {
@@ -229,7 +228,6 @@
     "through2": "2.0.5",
     "ts-loader": "9.4.4",
     "tsconfig-paths": "3.10.1",
-    "tslint": "^6.1.3",
     "webpack": "^5.88.2",
     "ws": "5.2.4",
     "xvfb-maybe": "0.2.1"
diff --git a/packages/socket/package.json b/packages/socket/package.json
index 823602fbabb9..f983c99bc695 100644
--- a/packages/socket/package.json
+++ b/packages/socket/package.json
@@ -10,7 +10,7 @@
   ],
   "scripts": {
     "build-prod": "tsc || echo 'built, with type errors' && rm lib/browser.js",
-    "check-ts": "tsc --noEmit && yarn -s tslint",
+    "check-ts": "tsc --noEmit",
     "clean": "rimraf lib/*.js",
     "clean-deps": "rimraf node_modules",
     "postinstall": "patch-package",
@@ -18,8 +18,7 @@
     "test": "yarn test-unit",
     "test-debug": "yarn test-unit --inspect-brk=5566",
     "test-unit": "cross-env NODE_ENV=test mocha -r @packages/ts/register --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
-    "test-watch": "cross-env NODE_ENV=test mocha -r @packages/ts/register --watch",
-    "tslint": "tslint --config ../ts/tslint.json --project ."
+    "test-watch": "cross-env NODE_ENV=test mocha -r @packages/ts/register --watch"
   },
   "types": "lib/socket.ts",
   "workspaces": {
diff --git a/packages/telemetry/package.json b/packages/telemetry/package.json
index 5aefd1ff3e1f..2fe57d484d09 100644
--- a/packages/telemetry/package.json
+++ b/packages/telemetry/package.json
@@ -1,20 +1,24 @@
 {
+  "private": true,
   "name": "@packages/telemetry",
   "version": "0.0.0-development",
   "description": "open telemetry wrapper used throughout the cypress monorepo to instrument the cypress app",
-  "private": true,
   "main": "dist/node.js",
   "browser": "src/browser.ts",
+  "files": [
+    "dist",
+    "src"
+  ],
   "scripts": {
     "build": "tsc",
-    "check-ts": "tsc --noEmit && yarn -s tslint",
+    "check-ts": "tsc --noEmit",
     "clean": "rimraf dist",
+    "lint": "eslint .",
     "test": "yarn test-unit",
     "test-unit": "mocha --config ./test/.mocharc.js",
-    "lint": "eslint .",
-    "tslint": "tslint --config ../ts/tslint.json --project .",
     "watch": "tsc --watch"
   },
+  "types": "src/node.ts",
   "dependencies": {
     "@opentelemetry/api": "1.4.1",
     "@opentelemetry/core": "1.12.0",
@@ -30,10 +34,5 @@
     "@packages/ts": "0.0.0-development",
     "mocha": "7.0.1"
   },
-  "files": [
-    "dist",
-    "src"
-  ],
-  "types": "src/node.ts",
   "nx": {}
 }
diff --git a/packages/v8-snapshot-require/package.json b/packages/v8-snapshot-require/package.json
index d20021157c19..da6bf6e2f46b 100644
--- a/packages/v8-snapshot-require/package.json
+++ b/packages/v8-snapshot-require/package.json
@@ -10,13 +10,12 @@
   ],
   "scripts": {
     "build": "tsc",
-    "check-ts": "tsc --noEmit && yarn -s tslint",
+    "check-ts": "tsc --noEmit",
     "clean": "rimraf dist",
     "clean-deps": "rimraf node_modules",
     "lint": "eslint .",
     "test": "yarn test-unit",
     "test-unit": "mocha --config ./test/.mocharc.js",
-    "tslint": "tslint --config ../ts/tslint.json --project .",
     "watch": "tsc --watch"
   },
   "types": "src/snapshot-require.ts",

From 1565b20cf01b90d32a75084f4f9fedd06d616994 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Fri, 21 Feb 2025 12:09:31 -0500
Subject: [PATCH 119/127] partition linting rules for react, vue

---
 cli/eslint.config.ts                          |  26 +-
 eslint.config.ts                              | 293 +++++++++++-------
 npm/angular/eslint.config.ts                  |   4 +-
 npm/cypress-schematic/eslint.config.ts        |   4 +-
 npm/grep/eslint.config.ts                     |   4 +-
 npm/mount-utils/eslint.config.ts              |   4 +-
 npm/puppeteer/eslint.config.ts                |   4 +-
 npm/react/eslint.config.ts                    |   8 +-
 npm/svelte/eslint.config.ts                   |   4 +-
 npm/vite-dev-server/eslint.config.ts          |   4 +-
 npm/vite-plugin-cypress-esm/eslint.config.ts  |   4 +-
 npm/vue/eslint.config.ts                      |  14 +-
 .../eslint.config.ts                          |   4 +-
 npm/webpack-dev-server/eslint.config.ts       |   4 +-
 npm/webpack-preprocessor/eslint.config.ts     |   4 +-
 package.json                                  |   2 +-
 packages/app/eslint.config.ts                 |  49 +--
 packages/config/eslint.config.ts              |   5 +-
 packages/data-context/eslint.config.ts        |   9 +-
 packages/driver/eslint.config.ts              |   9 +-
 packages/electron/eslint.config.ts            |   4 +-
 packages/errors/eslint.config.ts              |   4 +-
 packages/extension/eslint.config.ts           |   4 +-
 packages/frontend-shared/eslint.config.ts     |  21 +-
 packages/graphql/eslint.config.ts             |   4 +-
 packages/https-proxy/eslint.config.ts         |   4 +-
 packages/icons/eslint.config.ts               |   4 +-
 packages/launcher/eslint.config.ts            |   5 +-
 packages/launchpad/eslint.config.ts           |   4 +-
 packages/net-stubbing/eslint.config.ts        |   4 +-
 packages/network/eslint.config.ts             |   4 +-
 packages/packherd-require/eslint.config.ts    |   4 +-
 packages/proxy/eslint.config.ts               |   4 +-
 packages/reporter/eslint.config.ts            |   4 +-
 packages/resolve-dist/eslint.config.ts        |   4 +-
 packages/rewriter/eslint.config.ts            |   5 +-
 packages/runner/eslint.config.ts              |   4 +-
 packages/scaffold-config/eslint.config.ts     |   4 +-
 packages/server/eslint.config.ts              |   5 +-
 packages/socket/eslint.config.ts              |   4 +-
 packages/telemetry/eslint.config.ts           |   4 +-
 packages/ts/eslint.config.ts                  |   4 +-
 packages/types/eslint.config.ts               |   5 +-
 packages/v8-snapshot-require/eslint.config.ts |   4 +-
 packages/web-config/eslint.config.ts          |   4 +-
 system-tests/eslint.config.ts                 |   4 +-
 tooling/electron-mksnapshot/eslint.config.ts  |   4 +-
 tooling/packherd/eslint.config.ts             |   4 +-
 tooling/v8-snapshot/eslint.config.ts          |   4 +-
 49 files changed, 290 insertions(+), 306 deletions(-)

diff --git a/cli/eslint.config.ts b/cli/eslint.config.ts
index cd64459c7d23..1741541e0035 100644
--- a/cli/eslint.config.ts
+++ b/cli/eslint.config.ts
@@ -1,30 +1,8 @@
-/*
-{
-  "rules": {
-    "no-restricted-syntax": [
-      "error",
-      {
-        "selector": "CallExpression[callee.name='arch']",
-        "message": "Do not use `arch()` to detect the user's machine architecture. Use util.getRealArch() instead."
-      },
-      {
-        "selector": "CallExpression[callee.object.name='os'][callee.property.name='arch']",
-        "message": "Do not use `os.arch()` to detect the user's machine architecture. Use util.getRealArch() instead."
-      },
-      {
-        "selector": "MemberExpression[object.name='process'][property.name='arch']",
-        "message": "Do not use `process.arch` to detect the user's machine architecture. Use util.getRealArch() instead."
-      }
-    ]
-  }
-}
-*/
 import path from 'path'
-import { baseConfig } from '../eslint.config'
-import globals from 'globals'
+import { defaultConfig, globals } from '../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     files: ['**/*.{ts,js}'],
     languageOptions: {
diff --git a/eslint.config.ts b/eslint.config.ts
index 4f1e6b9681b1..0cc444b66426 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -4,15 +4,16 @@ import ts, { InfiniteDepthConfigWithExtends } from 'typescript-eslint'
 import cy from 'eslint-plugin-cypress/flat'
 // @ts-expect error - this package has no type defs
 import mocha from 'eslint-plugin-mocha'
-import globals from 'globals'
+import Globals from 'globals'
 import vue from 'eslint-plugin-vue'
 import stylistic from '@stylistic/eslint-plugin'
 import * as graphql from '@graphql-eslint/eslint-plugin'
 import react from 'eslint-plugin-react'
 import eslintPluginImportX from 'eslint-plugin-import-x'
 
+export const globals = Globals
 /**
- * baseConfig should be imported by other packages that define their own eslint.config.ts
+ * defaultConfig should be imported by other packages that define their own eslint.config.ts
  * tsLanguageOptions may be shared, but is probably unnecessary
  * the default config exported from this file applies to
  *   - ./scripts/*
@@ -20,64 +21,22 @@ import eslintPluginImportX from 'eslint-plugin-import-x'
  * This can be simplified if ./scripts is converted to a monorepo package in /tooling
  */
 
-export const baseConfig: InfiniteDepthConfigWithExtends[] = [
-  js.configs.recommended,
-  ...ts.configs.recommended,
-  cy.configs.recommended,
-  mocha.configs.flat.recommended,
-  ...vue.configs['flat/recommended'],
-  eslintPluginImportX.flatConfigs.recommended,
-  eslintPluginImportX.flatConfigs.typescript,
-  {
-    ...react.configs.flat.recommended,
-    settings: {
-      react: {
-        version: '18',
-      },
-    },
-  },
-  stylistic.configs.customize({
-    'braceStyle': '1tbs',
-    'arrowParens': true,
-  }),
-
-  // set up ts parser
-  {
-    files: ['**/*.{ts,js,jsx,tsx,vue}'],
-    languageOptions: {
-      parserOptions: {
-        parser: ts.parser,
-        projectService: true,
-        extraFileExtensions: ['.vue'],
-        ecmaFeatures: {
-          jsx: true,
-        },
-      },
-    },
-  },
-
-  // graphql parser
-  {
-    files: ['*.graphql'],
-    ...graphql.flatConfigs['operations-recommended'],
-  },
-
-  // common node files
-  {
-    files: ['vite.config.mjs', 'webpack.config.*'],
-    languageOptions: {
-      globals: {
-        ...globals.node,
-      },
-    },
-  },
+/**
+ * Add vueConfig instead of typescript config when using Vue
+ */
 
-  // overrides for stylistic rules
+/**
+ * These override default rules to conform to the prevelant style in the repo.
+ * Some are disabled or set to warn because they are not applied consistently
+ * throughout the repo.
+ */
+const styleOverrides: InfiniteDepthConfigWithExtends[] = [
   {
     rules: {
       '@stylistic/space-before-function-paren': ['error', 'always'],
       '@stylistic/comma-dangle': ['error', 'always-multiline'],
       '@stylistic/multiline-ternary': 'off',
+
       // the following rules are very inconsistent across the codebase.
       // enabling them, even with customized options, may result in large diffs.
       '@stylistic/indent': 'off', // ['warn', 2, { MemberExpression: 0 }],
@@ -102,8 +61,6 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       '@stylistic/jsx-quotes': 'off',
     },
   },
-
-  // overrides for basic recommended rules, and custom rules
   {
     rules: {
       'no-console': 'error',
@@ -133,13 +90,13 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       'padding-line-between-statements': [
         'error',
         {
-          'blankLine': 'always',
-          'prev': '*',
-          'next': 'return',
+          blankLine: 'always',
+          prev: '*',
+          next: 'return',
         },
         {
-          'blankLine': 'always',
-          'prev': [
+          blankLine: 'always',
+          prev: [
             'const',
             'let',
             'var',
@@ -151,18 +108,18 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
             'cjs-import',
             'multiline-expression',
           ],
-          'next': '*',
+          next: '*',
         },
         {
-          'blankLine': 'any',
-          'prev': [
+          blankLine: 'any',
+          prev: [
             'const',
             'let',
             'var',
             'import',
             'cjs-import',
           ],
-          'next': [
+          next: [
             'const',
             'let',
             'var',
@@ -173,10 +130,17 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       ],
     },
   },
+]
 
+/**
+ * Rules that are gold standard, but have many violations. They are aspirational.
+ * When working on conformation process, override to warn or error one at a time
+ * in the package's eslint config that you're working on. Once there are no more
+ * errors for an entry, it can be removed - the default recommended configs will
+ * apply.
+ */
+const baseOverrides: InfiniteDepthConfigWithExtends[] = [
   {
-    // rules that are gold standard, but have many violations
-    // these are off while developing eslint, but will be set to warn
     rules: {
       'no-useless-escape': 'off',
       'prefer-const': 'off',
@@ -188,19 +152,6 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       'no-unsafe-optional-chaining': 'off',
       'prefer-spread': 'warn',
 
-      '@typescript-eslint/no-unused-expressions': 'off',
-      '@typescript-eslint/no-require-imports': 'off',
-      '@typescript-eslint/no-unused-vars': 'off',
-      '@typescript-eslint/no-unsafe-function-type': 'off',
-      '@typescript-eslint/ban-ts-comment': 'off',
-      '@typescript-eslint/no-namespace': 'off',
-      '@typescript-eslint/no-explicit-any': 'off',
-      '@typescript-eslint/no-this-alias': 'off',
-      '@typescript-eslint/triple-slash-reference': 'off',
-      '@typescript-eslint/no-empty-object-type': 'off',
-      '@typescript-eslint/no-wrapper-object-types': 'off',
-      '@typescript-eslint/no-non-null-asserted-optional-chain': 'off',
-
       'mocha/no-mocha-arrows': 'off',
       'mocha/no-setup-in-describe': 'off',
       'mocha/max-top-level-suites': 'off',
@@ -216,30 +167,11 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       'mocha/no-pending-tests': 'off',
       'mocha/no-nested-tests': 'off',
 
-      'vue/multi-word-component-names': 'off',
-      'vue/html-closing-bracket-spacing': 'off',
-      'vue/no-dupe-keys': 'off',
-      'vue/v-on-event-hyphenation': 'off',
-      'vue/attribute-hyphenation': 'off',
-      'vue/no-useless-template-attributes': 'off',
-
       'cypress/no-unnecessary-waiting': 'off',
       'cypress/unsafe-to-chain-command': 'off',
       'cypress/no-async-tests': 'off',
       'cypress/no-assigning-return-values': 'off',
 
-      'react/no-string-refs': 'warn',
-      'react/prop-types': 'warn',
-      'react/no-unescaped-entities': 'warn',
-      'react/jsx-no-target-blank': 'warn',
-      'react/no-unknown-property': 'warn',
-      'react/jsx-key': 'warn',
-      'react/display-name': 'warn',
-
-      // we use react 18+, so these rules do not apply
-      'react/react-in-jsx-scope': 'off',
-      'react/jsx-uses-react': 'off',
-
       // some import-x rules are off rather than warn, because they can be a little bit noisy in stdout
       'import-x/namespace': 'off', // sometimes we import modules as namespaces when we don't intend to, e.g. `import * as sinon from 'sinon'`
       'import-x/no-unresolved': 'off', // import-x has trouble resolving some things, like css from .vue
@@ -249,6 +181,33 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
       'import-x/no-extraneous-dependencies': 'warn',
     },
   },
+]
+
+const overrides = [
+  ...styleOverrides,
+  ...baseOverrides,
+]
+
+const baseConfig: InfiniteDepthConfigWithExtends[] = [
+  js.configs.recommended,
+  cy.configs.recommended,
+  mocha.configs.flat.recommended,
+  eslintPluginImportX.flatConfigs.recommended,
+
+  stylistic.configs.customize({
+    braceStyle: '1tbs',
+    arrowParens: true,
+  }),
+
+  // common node files
+  {
+    files: ['vite.config.mjs', 'webpack.config.*'],
+    languageOptions: {
+      globals: {
+        ...globals.node,
+      },
+    },
+  },
 
   // common file patterns to ignore
   {
@@ -275,11 +234,11 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
   // cy, *sx, and vue files are always in browser
   {
     files: ['**/*.cy.{js,ts}', '**/*.{j,t}sx', '**/*.vue'],
-      languageOptions: {
-        globals: {
-          ...globals['browser'],
-        },
+    languageOptions: {
+      globals: {
+        ...globals['browser'],
       },
+    },
   },
 
   {
@@ -290,10 +249,136 @@ export const baseConfig: InfiniteDepthConfigWithExtends[] = [
   },
 ]
 
+const typescriptConfig = ts.config(
+  ...ts.configs.recommended,
+  eslintPluginImportX.flatConfigs.typescript,
+  {
+    rules: {
+      '@typescript-eslint/no-unused-expressions': 'off',
+      '@typescript-eslint/no-require-imports': 'off',
+      '@typescript-eslint/no-unused-vars': 'off',
+      '@typescript-eslint/no-unsafe-function-type': 'off',
+      '@typescript-eslint/ban-ts-comment': 'off',
+      '@typescript-eslint/no-namespace': 'off',
+      '@typescript-eslint/no-explicit-any': 'off',
+      '@typescript-eslint/no-this-alias': 'off',
+      '@typescript-eslint/triple-slash-reference': 'off',
+      '@typescript-eslint/no-empty-object-type': 'off',
+      '@typescript-eslint/no-wrapper-object-types': 'off',
+      '@typescript-eslint/no-non-null-asserted-optional-chain': 'off',
+    },
+  },
+  {
+    files: ['**/*.{js,jsx}'],
+    extends: [ts.configs.disableTypeChecked],
+  },
+)
+
+const baseVueConfig = ts.config(
+  ...vue.configs['flat/recommended'],
+  {
+
+    files: ['**/*.{ts,vue}'],
+    languageOptions: {
+      ecmaVersion: 'latest',
+      sourceType: 'module',
+      globals: globals.browser,
+      parserOptions: {
+        parser: ts.parser,
+        extraFileExtensions: ['.vue'],
+      },
+    },
+    rules: {
+      'vue/multi-word-component-names': 'off',
+      'vue/html-closing-bracket-spacing': 'off',
+      'vue/no-dupe-keys': 'off',
+      'vue/v-on-event-hyphenation': 'off',
+      'vue/attribute-hyphenation': 'off',
+      'vue/no-useless-template-attributes': 'off',
+    },
+  },
+)
+
+export const vueConfig = ts.config(
+  ...baseConfig,
+  ...typescriptConfig,
+  ...baseVueConfig,
+  ...overrides,
+)
+
+/**
+ * Use reactConfig when using react. Take care not to include both react and
+ * vue configs in the same project - they conflict in weird ways.
+ */
+
+const baseReactConfig = ts.config(
+  {
+    ...react.configs.flat.recommended,
+    files: ['**/*.{jsx,tsx}'],
+    settings: {
+      react: {
+        version: '18',
+      },
+    },
+    languageOptions: {
+      parserOptions: {
+        ecmaFeatures: {
+          jsx: true,
+        },
+      },
+    },
+    rules: {
+      'react/no-string-refs': 'warn',
+      'react/prop-types': 'warn',
+      'react/no-unescaped-entities': 'warn',
+      'react/jsx-no-target-blank': 'warn',
+      'react/no-unknown-property': 'warn',
+      'react/jsx-key': 'warn',
+      'react/display-name': 'warn',
+      // we use react 18+, so these rules do not apply
+      'react/react-in-jsx-scope': 'off',
+      'react/jsx-uses-react': 'off',
+    },
+  },
+)
+
+export const reactConfig = ts.config(
+  ...baseConfig,
+  ...typescriptConfig,
+  ...baseReactConfig,
+  ...overrides,
+)
+
+export const combinedReactVueConfig = ts.config(
+  ...baseConfig,
+  ...typescriptConfig,
+  ...baseVueConfig,
+  ...baseReactConfig,
+  ...overrides,
+)
+
+// some packages need to disable all of the react rules for a subset of files
+export const disabledReactRules = {
+  ...Object.keys(react.configs.flat.recommended.rules).reduce((rules, rule) => {
+    return {
+      ...rules,
+      [rule]: 'off',
+    }
+  }, {}),
+  'react/no-unknown-property': 'off',
+}
+
+export const defaultConfig = ts.config(
+  ...baseConfig,
+  ...typescriptConfig,
+  ...overrides,
+)
 // applies to ./scripts - eslint tends to crash if this config is in the ./scripts dir?
 
 export default ts.config(
-  ...baseConfig,
+  ...defaultConfig,
+  ...typescriptConfig,
+  ...overrides,
   {
     ignores: [
       'npm/**/*',
diff --git a/npm/angular/eslint.config.ts b/npm/angular/eslint.config.ts
index 6dfcd19dce95..3d0ddf1fef3a 100644
--- a/npm/angular/eslint.config.ts
+++ b/npm/angular/eslint.config.ts
@@ -1,9 +1,9 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 import path from 'path'
 import globals from 'globals'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['dist/**'],
   },
diff --git a/npm/cypress-schematic/eslint.config.ts b/npm/cypress-schematic/eslint.config.ts
index 51b98287594e..c85ce7b031af 100644
--- a/npm/cypress-schematic/eslint.config.ts
+++ b/npm/cypress-schematic/eslint.config.ts
@@ -1,9 +1,9 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 import globals from 'globals'
 import path from 'path'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['src/**/*.{js,js.map,d.ts}', 'src/schematics/cypress/files/cypress/plugins/*.js', '**/*.spec.ts'],
   },
diff --git a/npm/grep/eslint.config.ts b/npm/grep/eslint.config.ts
index d2ba9438a79d..690c28d9d601 100644
--- a/npm/grep/eslint.config.ts
+++ b/npm/grep/eslint.config.ts
@@ -1,8 +1,8 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 import globals from 'globals'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     languageOptions: {
       globals: {
diff --git a/npm/mount-utils/eslint.config.ts b/npm/mount-utils/eslint.config.ts
index 382931b53e4c..ceab94066e2d 100644
--- a/npm/mount-utils/eslint.config.ts
+++ b/npm/mount-utils/eslint.config.ts
@@ -1,8 +1,8 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 import globals from 'globals'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     languageOptions: {
       parserOptions: {
diff --git a/npm/puppeteer/eslint.config.ts b/npm/puppeteer/eslint.config.ts
index 1c793df8c79a..a8c0d5702c32 100644
--- a/npm/puppeteer/eslint.config.ts
+++ b/npm/puppeteer/eslint.config.ts
@@ -1,7 +1,7 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['support/index.js'],
   },
diff --git a/npm/react/eslint.config.ts b/npm/react/eslint.config.ts
index ee44fd8c2666..fdb1ab922c71 100644
--- a/npm/react/eslint.config.ts
+++ b/npm/react/eslint.config.ts
@@ -1,9 +1,7 @@
-import { baseConfig } from '../../eslint.config'
-import globals from 'globals'
-import react from 'eslint-plugin-react'
+import { reactConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...reactConfig,
   {
     languageOptions: {
       parserOptions: {
@@ -15,8 +13,6 @@ export default [
   },
   {
     rules: {
-      'react/prop-types': 'warn',
-      'react/display-name': 'warn',
       'no-console': 'warn',
     },
   },
diff --git a/npm/svelte/eslint.config.ts b/npm/svelte/eslint.config.ts
index ca64c1379f96..c3a1ed7f3237 100644
--- a/npm/svelte/eslint.config.ts
+++ b/npm/svelte/eslint.config.ts
@@ -1,8 +1,8 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 import globals from 'globals'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     languageOptions: {
       parserOptions: {
diff --git a/npm/vite-dev-server/eslint.config.ts b/npm/vite-dev-server/eslint.config.ts
index 2498f71602e7..fedcb5b5acf2 100644
--- a/npm/vite-dev-server/eslint.config.ts
+++ b/npm/vite-dev-server/eslint.config.ts
@@ -1,8 +1,8 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 import globals from 'globals'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['index.d.ts', 'index.js', 'test/.mocharc.js'],
   },
diff --git a/npm/vite-plugin-cypress-esm/eslint.config.ts b/npm/vite-plugin-cypress-esm/eslint.config.ts
index b34b365f9a9d..15cd6b8bbcc0 100644
--- a/npm/vite-plugin-cypress-esm/eslint.config.ts
+++ b/npm/vite-plugin-cypress-esm/eslint.config.ts
@@ -1,7 +1,7 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['index.d.ts', 'index.js'],
   },
diff --git a/npm/vue/eslint.config.ts b/npm/vue/eslint.config.ts
index 3b39378612a3..15d2185b3463 100644
--- a/npm/vue/eslint.config.ts
+++ b/npm/vue/eslint.config.ts
@@ -1,9 +1,7 @@
-import { baseConfig } from '../../eslint.config'
-import ts from 'typescript-eslint'
-import globals from 'globals'
+import { vueConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...vueConfig,
   {
     languageOptions: {
       parserOptions: {
@@ -13,12 +11,4 @@ export default [
       },
     },
   },
-  {
-    files: ['**/*.vue'],
-    languageOptions: {
-      parserOptions: {
-        parser: ts.parser,
-      },
-    },
-  },
 ]
diff --git a/npm/webpack-batteries-included-preprocessor/eslint.config.ts b/npm/webpack-batteries-included-preprocessor/eslint.config.ts
index a0b4c1c07563..88c238544033 100644
--- a/npm/webpack-batteries-included-preprocessor/eslint.config.ts
+++ b/npm/webpack-batteries-included-preprocessor/eslint.config.ts
@@ -1,8 +1,8 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 import globals from 'globals'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   { ignores: ['test/fixtures/**/*', 'index.js'] },
   {
   languageOptions: {
diff --git a/npm/webpack-dev-server/eslint.config.ts b/npm/webpack-dev-server/eslint.config.ts
index 2c5ed1a6c2c5..affa6b274368 100644
--- a/npm/webpack-dev-server/eslint.config.ts
+++ b/npm/webpack-dev-server/eslint.config.ts
@@ -1,8 +1,8 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 import globals from 'globals'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['__snapshots__/**/*', 'test/fixtures/compilation-fails.spec.js', 'test/.mocharc.js'],
   },
diff --git a/npm/webpack-preprocessor/eslint.config.ts b/npm/webpack-preprocessor/eslint.config.ts
index 971930bf3970..46a6352c1f5e 100644
--- a/npm/webpack-preprocessor/eslint.config.ts
+++ b/npm/webpack-preprocessor/eslint.config.ts
@@ -1,8 +1,8 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 import globals from 'globals'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['__snapshots__/**/*', 'cypress/tests/e2e/compile-error.js', 'test/fixtures/**/*'],
   },
diff --git a/package.json b/package.json
index 9bdc1a88b21f..1a4068d25b40 100644
--- a/package.json
+++ b/package.json
@@ -53,7 +53,7 @@
     "get-next-version": "node scripts/get-next-version.js",
     "gulp:debug": "node --inspect-brk ./node_modules/.bin/gulp",
     "postinstall": "node ./scripts/run-postInstall.js",
-    "lint": "lerna run lint --concurrency 2",
+    "lint": "lerna run lint --concurrency 10",
     "npm-release": "node scripts/npm-release.js",
     "prepare": "husky install",
     "prepare-release-artifacts": "node ./scripts/prepare-release-artifacts.js",
diff --git a/packages/app/eslint.config.ts b/packages/app/eslint.config.ts
index a07258dec1d7..5d2c411d91d5 100644
--- a/packages/app/eslint.config.ts
+++ b/packages/app/eslint.config.ts
@@ -1,55 +1,12 @@
-import { baseConfig } from '../../eslint.config'
-import globals from 'globals'
-import react from 'eslint-plugin-react'
+import { combinedReactVueConfig, disabledReactRules } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
-
+  ...combinedReactVueConfig,
   {
     ignores: ['.__mf__temp/**/*'],
   },
-
-  {
-    languageOptions: {
-      parserOptions: {
-        projectService: {
-          allowDefaultProject: ['*.config.{ts,js,cjs,mjs}'],
-        },
-      },
-    },
-  },
-
-  {
-    files: ['**/*.{tsx,jsx,vue,ts,js'],
-    languageOptions: {
-      globals: {
-        ...globals.browser,
-      },
-    },
-  },
-
-  {
-    files: ['vite.config.mjs'],
-    languageOptions: {
-      globals: {
-        ...globals.node,
-      },
-    },
-  },
-
-  // {cy,spec}.tsx files in the src/ dir are component tests,
-  // and since the components that are being rendered are vue
-  // components and not react components, react rules do not apply.
   {
     files: ['src/**/*.{spec,cy}.tsx'],
-    rules: {
-      ...Object.keys(react.configs.flat.recommended.rules).reduce((rules, rule) => {
-        return {
-          ...rules,
-          [rule]: 'off',
-        }
-      }, {}),
-      'react/no-unknown-property': 'off',
-    },
+    rules: disabledReactRules,
   },
 ]
diff --git a/packages/config/eslint.config.ts b/packages/config/eslint.config.ts
index 6f80a3c95252..db27f8a93a0e 100644
--- a/packages/config/eslint.config.ts
+++ b/packages/config/eslint.config.ts
@@ -1,8 +1,7 @@
-import { baseConfig } from '../../eslint.config'
-import globals from 'globals'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['**/__babel_fixtures__/**/*', 'index.js'],
   },
diff --git a/packages/data-context/eslint.config.ts b/packages/data-context/eslint.config.ts
index d540f906ff7b..4ba918bd40ff 100644
--- a/packages/data-context/eslint.config.ts
+++ b/packages/data-context/eslint.config.ts
@@ -1,10 +1,13 @@
-import { baseConfig } from '../../eslint.config'
+import { combinedReactVueConfig } from '../../eslint.config'
 import globals from 'globals'
 
 export default [
-  ...baseConfig,
+  ...combinedReactVueConfig,
   {
-    ignores: ['index.js'],
+    ignores: [
+      'index.js',
+      'test/unit/actions/project/empty.jsx', // this is just an empty file, but vue complains
+    ],
   },
   {
     languageOptions: {
diff --git a/packages/driver/eslint.config.ts b/packages/driver/eslint.config.ts
index 1a527007307f..51f27064e625 100644
--- a/packages/driver/eslint.config.ts
+++ b/packages/driver/eslint.config.ts
@@ -1,8 +1,7 @@
-import { baseConfig } from '../../eslint.config'
-import globals from 'globals'
+import { defaultConfig, globals } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['cypress/fixtures/**/*', 'src/config/jquery.scrollto.ts'],
   },
@@ -21,9 +20,7 @@ export default [
   {
     files: ['cypress/plugins/*'],
     languageOptions: {
-      globals: {
-        ...globals['node'],
-      },
+      globals: globals.node,
     },
   },
 ]
diff --git a/packages/electron/eslint.config.ts b/packages/electron/eslint.config.ts
index 466f102e1852..b9af4ec9021d 100644
--- a/packages/electron/eslint.config.ts
+++ b/packages/electron/eslint.config.ts
@@ -1,8 +1,8 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 import globals from 'globals'
 
 export default [
-  ...baseConfig, {
+  ...defaultConfig, {
     languageOptions: {
       globals: {
         ...globals.node,
diff --git a/packages/errors/eslint.config.ts b/packages/errors/eslint.config.ts
index cb97f9b3e777..b0a414274e85 100644
--- a/packages/errors/eslint.config.ts
+++ b/packages/errors/eslint.config.ts
@@ -1,7 +1,7 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['__snapshot-html__/**/*'],
   },
diff --git a/packages/extension/eslint.config.ts b/packages/extension/eslint.config.ts
index 4a59571f109c..1b52cef3a8bf 100644
--- a/packages/extension/eslint.config.ts
+++ b/packages/extension/eslint.config.ts
@@ -1,7 +1,7 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     languageOptions: {
       parserOptions: {
diff --git a/packages/frontend-shared/eslint.config.ts b/packages/frontend-shared/eslint.config.ts
index 7f3f0703d382..05f698042ebc 100644
--- a/packages/frontend-shared/eslint.config.ts
+++ b/packages/frontend-shared/eslint.config.ts
@@ -1,9 +1,7 @@
-import { baseConfig } from '../../eslint.config'
-import globals from 'globals'
-import react from 'eslint-plugin-react'
+import { vueConfig, globals } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...vueConfig,
   {
     ignores: ['**/generated/**/*'],
   },
@@ -23,19 +21,4 @@ export default [
       },
     },
   },
-  // {cy,spec}.tsx files in the src/ dir are component tests,
-  // and since the components that are being rendered are vue
-  // components and not react components, react rules do not apply.
-  {
-    files: ['src/**/*.{spec,cy}.tsx'],
-    rules: {
-      ...Object.keys(react.configs.flat.recommended.rules).reduce((rules, rule) => {
-        return {
-          ...rules,
-          [rule]: 'off',
-        }
-      }, {}),
-      'react/no-unknown-property': 'off',
-    },
-  },
 ]
diff --git a/packages/graphql/eslint.config.ts b/packages/graphql/eslint.config.ts
index b54ab7a1a1a9..22b8ccb7e316 100644
--- a/packages/graphql/eslint.config.ts
+++ b/packages/graphql/eslint.config.ts
@@ -1,7 +1,7 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['test/.mocharc.js'],
   },
diff --git a/packages/https-proxy/eslint.config.ts b/packages/https-proxy/eslint.config.ts
index 25b7522b74be..c3245fd82538 100644
--- a/packages/https-proxy/eslint.config.ts
+++ b/packages/https-proxy/eslint.config.ts
@@ -1,8 +1,8 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 import globals from 'globals'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     languageOptions: {
       globals: globals.node,
diff --git a/packages/icons/eslint.config.ts b/packages/icons/eslint.config.ts
index f4850b612602..0592977dc982 100644
--- a/packages/icons/eslint.config.ts
+++ b/packages/icons/eslint.config.ts
@@ -1,7 +1,7 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     languageOptions: {
       parserOptions: {
diff --git a/packages/launcher/eslint.config.ts b/packages/launcher/eslint.config.ts
index 2dc8214c787c..dc54b45c2e46 100644
--- a/packages/launcher/eslint.config.ts
+++ b/packages/launcher/eslint.config.ts
@@ -1,6 +1,5 @@
-import { baseConfig } from '../../eslint.config'
-import path from 'path'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
 ]
diff --git a/packages/launchpad/eslint.config.ts b/packages/launchpad/eslint.config.ts
index aa6a4be27a9a..00aada3199b1 100644
--- a/packages/launchpad/eslint.config.ts
+++ b/packages/launchpad/eslint.config.ts
@@ -1,7 +1,7 @@
-import { baseConfig } from '../../eslint.config'
+import { vueConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...vueConfig,
   {
     ignores: ['src/generated/**/*', 'cypress/**/fixtures/**/*'],
   },
diff --git a/packages/net-stubbing/eslint.config.ts b/packages/net-stubbing/eslint.config.ts
index 8b9636ce36e2..1e89ac6d5ce9 100644
--- a/packages/net-stubbing/eslint.config.ts
+++ b/packages/net-stubbing/eslint.config.ts
@@ -1,3 +1,3 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 
-export default baseConfig
+export default defaultConfig
diff --git a/packages/network/eslint.config.ts b/packages/network/eslint.config.ts
index 681c7286ef3e..ef7ddce753b6 100644
--- a/packages/network/eslint.config.ts
+++ b/packages/network/eslint.config.ts
@@ -1,7 +1,7 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['index.js'],
   },
diff --git a/packages/packherd-require/eslint.config.ts b/packages/packherd-require/eslint.config.ts
index ea40d0dd6d92..23a9ddc13055 100644
--- a/packages/packherd-require/eslint.config.ts
+++ b/packages/packherd-require/eslint.config.ts
@@ -1,7 +1,7 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['test/.mocharc.js', 'test/fixtures/**/*'],
   },
diff --git a/packages/proxy/eslint.config.ts b/packages/proxy/eslint.config.ts
index 681c7286ef3e..ef7ddce753b6 100644
--- a/packages/proxy/eslint.config.ts
+++ b/packages/proxy/eslint.config.ts
@@ -1,7 +1,7 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['index.js'],
   },
diff --git a/packages/reporter/eslint.config.ts b/packages/reporter/eslint.config.ts
index 7df27bfc6e76..f66ef584eb16 100644
--- a/packages/reporter/eslint.config.ts
+++ b/packages/reporter/eslint.config.ts
@@ -1,7 +1,7 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     languageOptions: {
       parserOptions: {
diff --git a/packages/resolve-dist/eslint.config.ts b/packages/resolve-dist/eslint.config.ts
index 681c7286ef3e..ef7ddce753b6 100644
--- a/packages/resolve-dist/eslint.config.ts
+++ b/packages/resolve-dist/eslint.config.ts
@@ -1,7 +1,7 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['index.js'],
   },
diff --git a/packages/rewriter/eslint.config.ts b/packages/rewriter/eslint.config.ts
index 1b2f0f6329e9..19f78d928883 100644
--- a/packages/rewriter/eslint.config.ts
+++ b/packages/rewriter/eslint.config.ts
@@ -1,8 +1,7 @@
-import { baseConfig } from '../../eslint.config'
-import globals from 'globals'
+import { defaultConfig, globals } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['index.js'],
   },
diff --git a/packages/runner/eslint.config.ts b/packages/runner/eslint.config.ts
index a1c7bb2300b4..4a7bfeb4e167 100644
--- a/packages/runner/eslint.config.ts
+++ b/packages/runner/eslint.config.ts
@@ -1,7 +1,7 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['src/main.scss.d.ts'],
   },
diff --git a/packages/scaffold-config/eslint.config.ts b/packages/scaffold-config/eslint.config.ts
index d7ea8cf0a954..384fd8d54f62 100644
--- a/packages/scaffold-config/eslint.config.ts
+++ b/packages/scaffold-config/eslint.config.ts
@@ -1,7 +1,7 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['index.js'],
   },
diff --git a/packages/server/eslint.config.ts b/packages/server/eslint.config.ts
index dea61ad3a2ae..a9ef6e395cc9 100644
--- a/packages/server/eslint.config.ts
+++ b/packages/server/eslint.config.ts
@@ -1,8 +1,7 @@
-import { baseConfig } from '../../eslint.config'
-import globals from 'globals'
+import { defaultConfig, globals } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['**/fixtures/**/*'],
   },
diff --git a/packages/socket/eslint.config.ts b/packages/socket/eslint.config.ts
index 8824ca8147e9..38207c5b840d 100644
--- a/packages/socket/eslint.config.ts
+++ b/packages/socket/eslint.config.ts
@@ -1,8 +1,8 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 import globals from 'globals'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['index.js'],
   },
diff --git a/packages/telemetry/eslint.config.ts b/packages/telemetry/eslint.config.ts
index a50be8ebe2d8..4b92caf812a9 100644
--- a/packages/telemetry/eslint.config.ts
+++ b/packages/telemetry/eslint.config.ts
@@ -1,7 +1,7 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['index.js', 'test/.mocharc.js'],
   },
diff --git a/packages/ts/eslint.config.ts b/packages/ts/eslint.config.ts
index ae029139870a..a983883ea3b6 100644
--- a/packages/ts/eslint.config.ts
+++ b/packages/ts/eslint.config.ts
@@ -1,8 +1,8 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 import globals from 'globals'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['test/.mocharc.js', 'test/fixtures/**/*'],
   },
diff --git a/packages/types/eslint.config.ts b/packages/types/eslint.config.ts
index 17fabe2c3c11..384fd8d54f62 100644
--- a/packages/types/eslint.config.ts
+++ b/packages/types/eslint.config.ts
@@ -1,8 +1,7 @@
-import { baseConfig } from '../../eslint.config'
-import globals from 'globals'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['index.js'],
   },
diff --git a/packages/v8-snapshot-require/eslint.config.ts b/packages/v8-snapshot-require/eslint.config.ts
index 22c589b9a382..795c18d42ea4 100644
--- a/packages/v8-snapshot-require/eslint.config.ts
+++ b/packages/v8-snapshot-require/eslint.config.ts
@@ -1,7 +1,7 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   { ignores: ['test/.mocharc.js'] },
   {
     languageOptions: {
diff --git a/packages/web-config/eslint.config.ts b/packages/web-config/eslint.config.ts
index 9315ba41996f..21a83ddf26ca 100644
--- a/packages/web-config/eslint.config.ts
+++ b/packages/web-config/eslint.config.ts
@@ -1,7 +1,7 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     languageOptions: {
       parserOptions: {
diff --git a/system-tests/eslint.config.ts b/system-tests/eslint.config.ts
index b5010edd4854..ba5acb38da43 100644
--- a/system-tests/eslint.config.ts
+++ b/system-tests/eslint.config.ts
@@ -1,8 +1,8 @@
-import { baseConfig } from '../eslint.config'
+import { defaultConfig } from '../eslint.config'
 import globals from 'globals'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   { ignores: ['project-fixtures/**/*', 'projects/**/*', 'lib/validations/**/*', 'lib/fixtureDirs.ts'] },
   {
     languageOptions: {
diff --git a/tooling/electron-mksnapshot/eslint.config.ts b/tooling/electron-mksnapshot/eslint.config.ts
index b13679b7a114..916415b08018 100644
--- a/tooling/electron-mksnapshot/eslint.config.ts
+++ b/tooling/electron-mksnapshot/eslint.config.ts
@@ -1,7 +1,7 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   {
     ignores: ['bin/**/*', 'test/fixtures/**/*', 'test/.mocharc.js'],
   },
diff --git a/tooling/packherd/eslint.config.ts b/tooling/packherd/eslint.config.ts
index 22c589b9a382..795c18d42ea4 100644
--- a/tooling/packherd/eslint.config.ts
+++ b/tooling/packherd/eslint.config.ts
@@ -1,7 +1,7 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   { ignores: ['test/.mocharc.js'] },
   {
     languageOptions: {
diff --git a/tooling/v8-snapshot/eslint.config.ts b/tooling/v8-snapshot/eslint.config.ts
index a25d13f2c726..ea93f366ca15 100644
--- a/tooling/v8-snapshot/eslint.config.ts
+++ b/tooling/v8-snapshot/eslint.config.ts
@@ -1,8 +1,8 @@
-import { baseConfig } from '../../eslint.config'
+import { defaultConfig } from '../../eslint.config'
 import globals from 'globals'
 
 export default [
-  ...baseConfig,
+  ...defaultConfig,
   { ignores: ['test/.mocharc.js', '__snapshots__/**/*', 'cache/**/*', 'test/fixtures/**/*'] },
   {
     languageOptions: {

From 0c16058bf3f5344a4e2d1ce0e8681e697b678c81 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Fri, 21 Feb 2025 13:23:00 -0500
Subject: [PATCH 120/127] check-ts fix

---
 eslint.config.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eslint.config.ts b/eslint.config.ts
index 0cc444b66426..4ec3a1ca00c3 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -359,7 +359,7 @@ export const combinedReactVueConfig = ts.config(
 
 // some packages need to disable all of the react rules for a subset of files
 export const disabledReactRules = {
-  ...Object.keys(react.configs.flat.recommended.rules).reduce((rules, rule) => {
+  ...Object.keys(react.configs.flat.recommended?.rules || {}).reduce((rules, rule) => {
     return {
       ...rules,
       [rule]: 'off',

From 31eead2bafd9264327f35ffc6c1ecec3b4275aac Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Mon, 24 Feb 2025 11:04:51 -0500
Subject: [PATCH 121/127] tslint lockfile removal, hopefully fix scss.d.ts
 errors in reporter

---
 packages/reporter/eslint.config.ts   |  5 +++++
 packages/reporter/src/main.scss.d.ts |  4 ++--
 yarn.lock                            | 21 +--------------------
 3 files changed, 8 insertions(+), 22 deletions(-)

diff --git a/packages/reporter/eslint.config.ts b/packages/reporter/eslint.config.ts
index f66ef584eb16..34214c520cc7 100644
--- a/packages/reporter/eslint.config.ts
+++ b/packages/reporter/eslint.config.ts
@@ -2,6 +2,11 @@ import { defaultConfig } from '../../eslint.config'
 
 export default [
   ...defaultConfig,
+  {
+    // Autofix on .scss.d.ts files seems to cause an outdated type declaration file
+    // error from css-modules-typescript-loader due to a difference of whitespace.
+    ignores: ['**/*.scss.d.ts'],
+  },
   {
     languageOptions: {
       parserOptions: {
diff --git a/packages/reporter/src/main.scss.d.ts b/packages/reporter/src/main.scss.d.ts
index 7356746eb3bd..9aa54bf9831e 100644
--- a/packages/reporter/src/main.scss.d.ts
+++ b/packages/reporter/src/main.scss.d.ts
@@ -3,6 +3,6 @@
 interface CssExports {
 
 }
-export const cssExports: CssExports
+export const cssExports: CssExports;
 
-export default cssExports
+export default cssExports;
diff --git a/yarn.lock b/yarn.lock
index 834874ed8738..f591fd6c4b83 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -31246,7 +31246,7 @@ tslib@2.3.1, tslib@~2.3.0:
   resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01"
   integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==
 
-tslib@^1.0.0, tslib@^1.10.0, tslib@^1.11.1, tslib@^1.13.0, tslib@^1.8.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3:
+tslib@^1.0.0, tslib@^1.10.0, tslib@^1.11.1, tslib@^1.8.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3:
   version "1.14.1"
   resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
   integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
@@ -31290,25 +31290,6 @@ tslint@5.14.0:
     tslib "^1.8.0"
     tsutils "^2.29.0"
 
-tslint@^6.1.3:
-  version "6.1.3"
-  resolved "https://registry.yarnpkg.com/tslint/-/tslint-6.1.3.tgz#5c23b2eccc32487d5523bd3a470e9aa31789d904"
-  integrity sha512-IbR4nkT96EQOvKE2PW/djGz8iGNeJ4rF2mBfiYaR/nvUWYKJhLwimoJKgjIFEIDibBtOevj7BqCRL4oHeWWUCg==
-  dependencies:
-    "@babel/code-frame" "^7.0.0"
-    builtin-modules "^1.1.1"
-    chalk "^2.3.0"
-    commander "^2.12.1"
-    diff "^4.0.1"
-    glob "^7.1.1"
-    js-yaml "^3.13.1"
-    minimatch "^3.0.4"
-    mkdirp "^0.5.3"
-    resolve "^1.3.2"
-    semver "^5.3.0"
-    tslib "^1.13.0"
-    tsutils "^2.29.0"
-
 tsutils@^2.29.0:
   version "2.29.0"
   resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.29.0.tgz#32b488501467acbedd4b85498673a0812aca0b99"

From 09110fc5e78096e3c9d6f20af72120c6b6ecf2c0 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Mon, 24 Feb 2025 15:53:59 -0500
Subject: [PATCH 122/127] ??

---
 packages/reporter/src/main.scss.d.ts                            | 1 -
 .../server/lib/cloud/artifacts/print_protocol_upload_error.ts   | 2 --
 2 files changed, 3 deletions(-)

diff --git a/packages/reporter/src/main.scss.d.ts b/packages/reporter/src/main.scss.d.ts
index 9aa54bf9831e..132b232e8959 100644
--- a/packages/reporter/src/main.scss.d.ts
+++ b/packages/reporter/src/main.scss.d.ts
@@ -4,5 +4,4 @@ interface CssExports {
 
 }
 export const cssExports: CssExports;
-
 export default cssExports;
diff --git a/packages/server/lib/cloud/artifacts/print_protocol_upload_error.ts b/packages/server/lib/cloud/artifacts/print_protocol_upload_error.ts
index 7a94a038429a..17de993ad21b 100644
--- a/packages/server/lib/cloud/artifacts/print_protocol_upload_error.ts
+++ b/packages/server/lib/cloud/artifacts/print_protocol_upload_error.ts
@@ -8,8 +8,6 @@ const debug = Debug('cypress:server:cloud:artifacts')
 
 export const printProtocolUploadError = (error: Error) => {
   debug('protocol error: %O', error)
-  // eslint-disable-next-line no-console
-  console.log('')
   if ((error as AggregateError).errors) {
     errors.warning('CLOUD_PROTOCOL_UPLOAD_AGGREGATE_ERROR', error as AggregateError)
   } else if (HttpError.isHttpError(error)) {

From 1e774a8a0baf18927dc3ae20386f603561b4c88d Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 25 Feb 2025 10:36:37 -0500
Subject: [PATCH 123/127] do not lint/fix the background.js fixture in the
 extension

---
 packages/extension/eslint.config.ts           |  6 ++---
 packages/extension/test/helpers/background.js | 26 +++++++++----------
 2 files changed, 15 insertions(+), 17 deletions(-)

diff --git a/packages/extension/eslint.config.ts b/packages/extension/eslint.config.ts
index 1b52cef3a8bf..99622515a85b 100644
--- a/packages/extension/eslint.config.ts
+++ b/packages/extension/eslint.config.ts
@@ -2,6 +2,9 @@ import { defaultConfig } from '../../eslint.config'
 
 export default [
   ...defaultConfig,
+  {
+    ignores: ['test/helpers/**/*'],
+  },
   {
     languageOptions: {
       parserOptions: {
@@ -10,9 +13,6 @@ export default [
       },
     },
   },
-  {
-    files: ['extension/lib/extension.js'],
-  },
   {
     files: ['test/**/*.js'],
     languageOptions: {
diff --git a/packages/extension/test/helpers/background.js b/packages/extension/test/helpers/background.js
index 1d3445657ef5..c883ffa9f0f3 100644
--- a/packages/extension/test/helpers/background.js
+++ b/packages/extension/test/helpers/background.js
@@ -1,24 +1,22 @@
-/* global chrome, io */
-
-(function () {
+(function() {
   var HOST, PATH, automation, client, fail, invoke,
-    slice = [].slice
+    slice = [].slice;
 
-  HOST = 'CHANGE_ME_HOST'
+  HOST = "CHANGE_ME_HOST";
 
-  PATH = 'CHANGE_ME_PATH'
+  PATH = "CHANGE_ME_PATH";
 
   client = io.connect(HOST, {
-    path: PATH,
-  })
+    path: PATH
+  });
 
   automation = {
-    getAllCookies: function (filter, fn) {
+    getAllCookies: function(filter, fn) {
       if (filter == null) {
-        filter = {}
+        filter = {};
       }
+      return chrome.cookies.getAll(filter, fn);
+    }
+  };
 
-      return chrome.cookies.getAll(filter, fn)
-    },
-  }
-}).call(this)
+}).call(this);

From 1f6a0af7e072b334b2caf96fa5ad3a428e1c8bab Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 25 Feb 2025 11:15:15 -0500
Subject: [PATCH 124/127] move preprocessor from dev to regular dependency

---
 .../package.json                              | 32 +++++++++----------
 1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/npm/webpack-batteries-included-preprocessor/package.json b/npm/webpack-batteries-included-preprocessor/package.json
index dfefa621551b..c763d21ed628 100644
--- a/npm/webpack-batteries-included-preprocessor/package.json
+++ b/npm/webpack-batteries-included-preprocessor/package.json
@@ -1,8 +1,19 @@
 {
+  "private": false,
   "name": "@cypress/webpack-batteries-included-preprocessor",
   "version": "0.0.0-development",
   "description": "Cypress preprocessor for bundling JavaScript via webpack with dependencies included and support for various ES features, TypeScript, and CoffeeScript",
-  "private": false,
+  "license": "MIT",
+  "homepage": "https://github.com/cypress-io/cypress/tree/develop/npm/webpack-batteries-included-preprocessor#readme",
+  "repository": {
+    "type": "git",
+    "url": "https://github.com/cypress-io/cypress.git"
+  },
+  "bugs": "https://github.com/cypress-io/cypress/issues/new?assignees=&labels=npm%3A%20webpack-batteries-included-preprocessor&template=1-bug-report.md&title=",
+  "files": [
+    "empty.js",
+    "index.js"
+  ],
   "scripts": {
     "lint": "eslint .",
     "test": "mocha test/**/*.spec.* --timeout 4000"
@@ -15,6 +26,7 @@
     "@babel/preset-env": "^7.25.3",
     "@babel/preset-react": "^7.24.7",
     "@babel/runtime": "^7.25.0",
+    "@cypress/webpack-preprocessor": "0.0.0-development",
     "assert": "^2.0.0",
     "babel-loader": "^9.1.3",
     "babel-plugin-add-module-exports": "^1.0.2",
@@ -48,8 +60,10 @@
     "vm-browserify": "^1.1.2",
     "webpack": "^5.88.2"
   },
+  "peerDependencies": {
+    "@cypress/webpack-preprocessor": "^5.4.4"
+  },
   "devDependencies": {
-    "@cypress/webpack-preprocessor": "0.0.0-development",
     "@types/mocha": "^8.0.2",
     "@types/webpack": "^5.28.1",
     "chai": "^4.2.0",
@@ -60,20 +74,6 @@
     "sinon": "18.0.0",
     "typescript": "~5.4.5"
   },
-  "peerDependencies": {
-    "@cypress/webpack-preprocessor": "^5.4.4"
-  },
-  "files": [
-    "index.js",
-    "empty.js"
-  ],
-  "license": "MIT",
-  "repository": {
-    "type": "git",
-    "url": "https://github.com/cypress-io/cypress.git"
-  },
-  "homepage": "https://github.com/cypress-io/cypress/tree/develop/npm/webpack-batteries-included-preprocessor#readme",
-  "bugs": "https://github.com/cypress-io/cypress/issues/new?assignees=&labels=npm%3A%20webpack-batteries-included-preprocessor&template=1-bug-report.md&title=",
   "keywords": [
     "cypress",
     "cypress-plugin",

From 7c09c43f72effdbec7b9c13e4cb36f960bee6cc0 Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Tue, 25 Feb 2025 12:18:01 -0500
Subject: [PATCH 125/127] fix build for webpack-preprocessor

---
 npm/webpack-batteries-included-preprocessor/eslint.config.ts | 2 +-
 npm/webpack-preprocessor/eslint.config.ts                    | 2 +-
 npm/webpack-preprocessor/tsconfig.json                       | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/npm/webpack-batteries-included-preprocessor/eslint.config.ts b/npm/webpack-batteries-included-preprocessor/eslint.config.ts
index 88c238544033..9c1313cebb97 100644
--- a/npm/webpack-batteries-included-preprocessor/eslint.config.ts
+++ b/npm/webpack-batteries-included-preprocessor/eslint.config.ts
@@ -3,7 +3,7 @@ import globals from 'globals'
 
 export default [
   ...defaultConfig,
-  { ignores: ['test/fixtures/**/*', 'index.js'] },
+  { ignores: ['test/fixtures/**/*', 'index.js', 'test/_test-output/**/*'] },
   {
   languageOptions: {
     parserOptions: {
diff --git a/npm/webpack-preprocessor/eslint.config.ts b/npm/webpack-preprocessor/eslint.config.ts
index 46a6352c1f5e..072bf891d418 100644
--- a/npm/webpack-preprocessor/eslint.config.ts
+++ b/npm/webpack-preprocessor/eslint.config.ts
@@ -10,7 +10,7 @@ export default [
     languageOptions: {
       parserOptions: {
         projectService: {
-          allowDefaultProject: ['cypress.config.js', 'scripts/test-webpack-5.js'],
+          allowDefaultProject: ['cypress.config.js', 'scripts/test-webpack-5.js', 'eslint.config.ts'],
         },
       },
       globals: {
diff --git a/npm/webpack-preprocessor/tsconfig.json b/npm/webpack-preprocessor/tsconfig.json
index 8d5c7cc20dab..fd6a84514a9d 100644
--- a/npm/webpack-preprocessor/tsconfig.json
+++ b/npm/webpack-preprocessor/tsconfig.json
@@ -62,5 +62,5 @@
     /* Advanced Options */
     "forceConsistentCasingInFileNames": true  /* Disallow inconsistently-cased references to the same file. */
   },
-  "include": ["./*.ts", "./lib/*.ts"]
+  "include": ["./index.ts", "./lib/*.ts"]
 }

From 03f056ee37d7691f1bfc88210a8856919fcc152d Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 26 Feb 2025 11:07:26 -0500
Subject: [PATCH 126/127] --return-pkg test made less brittle

---
 packages/server/test/integration/cypress_spec.js | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/packages/server/test/integration/cypress_spec.js b/packages/server/test/integration/cypress_spec.js
index 911f9d9aa042..f1abe51af41e 100644
--- a/packages/server/test/integration/cypress_spec.js
+++ b/packages/server/test/integration/cypress_spec.js
@@ -1735,12 +1735,12 @@ describe('lib/cypress', () => {
       sinon.stub(console, 'log')
     })
 
-    it('logs package.json and exits', function () {
-      return cypress.start(['--return-pkg'])
-      .then(() => {
-        expect(console.log).to.be.calledWithMatch('{"name":"cypress"')
-        this.expectExitWith(0)
-      })
+    it('logs package.json and exits', async function () {
+      await cypress.start(['--return-pkg'])
+
+      const [loggedStr] = console.log.firstCall.args
+      expect(JSON.parse(loggedStr)).to.deep.eq(pkg)
+      this.expectExitWith(0)
     })
   })
 

From 68950e291ddfcd466b67529d699641aa87a51f2f Mon Sep 17 00:00:00 2001
From: Cacie Prins <cacie@cypress.io>
Date: Wed, 26 Feb 2025 11:08:40 -0500
Subject: [PATCH 127/127] fix lint

---
 packages/server/test/integration/cypress_spec.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/server/test/integration/cypress_spec.js b/packages/server/test/integration/cypress_spec.js
index f1abe51af41e..e2951d0848c0 100644
--- a/packages/server/test/integration/cypress_spec.js
+++ b/packages/server/test/integration/cypress_spec.js
@@ -1737,8 +1737,8 @@ describe('lib/cypress', () => {
 
     it('logs package.json and exits', async function () {
       await cypress.start(['--return-pkg'])
-
       const [loggedStr] = console.log.firstCall.args
+
       expect(JSON.parse(loggedStr)).to.deep.eq(pkg)
       this.expectExitWith(0)
     })