{
  "language": "@/js",
  "languageOptions": {
    "ecmaVersion": 2026,
    "globals": {
      "afterAll": false,
      "afterEach": false,
      "beforeAll": false,
      "beforeEach": false,
      "describe": false,
      "expect": false,
      "fit": false,
      "it": false,
      "jest": false,
      "test": false,
      "xdescribe": false,
      "xit": false,
      "xtest": false,
    },
    "parser": "espree@11.2.0",
    "parserOptions": {
      "sourceType": "module",
    },
    "sourceType": "module",
  },
  "linterOptions": {
    "reportUnusedDisableDirectives": 1,
  },
  "plugins": [
    "@",
    "jest:eslint-plugin-jest@29.15.2",
    "jest-formatting",
    "no-only-tests:no-only-tests",
  ],
  "rules": {
    "jest-formatting/padding-around-after-all-blocks": [
      2,
    ],
    "jest-formatting/padding-around-after-each-blocks": [
      2,
    ],
    "jest-formatting/padding-around-all": [
      0,
    ],
    "jest-formatting/padding-around-before-all-blocks": [
      2,
    ],
    "jest-formatting/padding-around-before-each-blocks": [
      2,
    ],
    "jest-formatting/padding-around-describe-blocks": [
      2,
    ],
    "jest-formatting/padding-around-expect-groups": [
      2,
    ],
    "jest-formatting/padding-around-test-blocks": [
      2,
    ],
    "jest/consistent-test-it": [
      2,
    ],
    "jest/expect-expect": [
      2,
    ],
    "jest/max-expects": [
      2,
      {
        "max": 15,
      },
    ],
    "jest/max-nested-describe": [
      2,
    ],
    "jest/no-alias-methods": [
      2,
    ],
    "jest/no-commented-out-tests": [
      2,
    ],
    "jest/no-conditional-expect": [
      2,
    ],
    "jest/no-conditional-in-test": [
      2,
    ],
    "jest/no-deprecated-functions": [
      2,
    ],
    "jest/no-disabled-tests": [
      0,
    ],
    "jest/no-done-callback": [
      2,
    ],
    "jest/no-duplicate-hooks": [
      2,
    ],
    "jest/no-export": [
      2,
    ],
    "jest/no-focused-tests": [
      0,
    ],
    "jest/no-hooks": [
      0,
    ],
    "jest/no-identical-title": [
      2,
    ],
    "jest/no-interpolation-in-snapshots": [
      2,
    ],
    "jest/no-jasmine-globals": [
      2,
    ],
    "jest/no-large-snapshots": [
      2,
      {
        "maxSize": 500,
      },
    ],
    "jest/no-mocks-import": [
      2,
    ],
    "jest/no-restricted-matchers": [
      2,
      {},
    ],
    "jest/no-standalone-expect": [
      2,
    ],
    "jest/no-test-prefixes": [
      2,
    ],
    "jest/no-test-return-statement": [
      2,
    ],
    "jest/prefer-called-with": [
      2,
    ],
    "jest/prefer-comparison-matcher": [
      2,
    ],
    "jest/prefer-equality-matcher": [
      2,
    ],
    "jest/prefer-expect-assertions": [
      0,
    ],
    "jest/prefer-expect-resolves": [
      2,
    ],
    "jest/prefer-hooks-in-order": [
      2,
    ],
    "jest/prefer-hooks-on-top": [
      2,
    ],
    "jest/prefer-lowercase-title": [
      0,
    ],
    "jest/prefer-snapshot-hint": [
      2,
    ],
    "jest/prefer-spy-on": [
      2,
    ],
    "jest/prefer-strict-equal": [
      2,
    ],
    "jest/prefer-to-be": [
      2,
    ],
    "jest/prefer-to-contain": [
      2,
    ],
    "jest/prefer-to-have-length": [
      2,
    ],
    "jest/prefer-todo": [
      2,
    ],
    "jest/require-hook": [
      2,
    ],
    "jest/require-to-throw-message": [
      2,
    ],
    "jest/require-top-level-describe": [
      2,
    ],
    "jest/valid-describe-callback": [
      2,
    ],
    "jest/valid-expect": [
      2,
    ],
    "jest/valid-expect-in-promise": [
      2,
    ],
    "jest/valid-title": [
      2,
    ],
    "no-only-tests/no-only-tests": [
      2,
    ],
  },
}