{
  "language": "@/js",
  "languageOptions": {
    "ecmaVersion": 2026,
    "globals": {
      "afterAll": true,
      "afterEach": true,
      "aroundAll": true,
      "aroundEach": true,
      "assert": true,
      "assertType": true,
      "beforeAll": true,
      "beforeEach": true,
      "chai": true,
      "describe": true,
      "expect": true,
      "expectTypeOf": true,
      "global": "readonly",
      "it": true,
      "onTestFailed": true,
      "onTestFinished": true,
      "suite": true,
      "test": true,
      "vi": true,
      "vitest": true,
    },
    "parser": "espree@11.2.0",
    "parserOptions": {
      "sourceType": "module",
    },
    "sourceType": "module",
  },
  "linterOptions": {
    "reportUnusedDisableDirectives": 1,
  },
  "plugins": [
    "@",
    "vitest:vitest@1.6.17",
    "no-only-tests:no-only-tests",
  ],
  "rules": {
    "no-only-tests/no-only-tests": [
      2,
    ],
    "vitest/consistent-each-for": [
      2,
      {},
    ],
    "vitest/consistent-test-filename": [
      2,
      {
        "allTestPattern": ".*\.(test|spec)\.[tj]sx?$",
        "pattern": ".*\.test\.[tj]sx?$",
      },
    ],
    "vitest/consistent-test-it": [
      2,
      {},
    ],
    "vitest/consistent-vitest-vi": [
      2,
      {
        "fn": "vi",
      },
    ],
    "vitest/expect-expect": [
      2,
      {
        "additionalTestBlockFunctions": [],
        "assertFunctionNames": [
          "expect",
          "assert",
        ],
      },
    ],
    "vitest/hoisted-apis-on-top": [
      2,
    ],
    "vitest/max-expects": [
      2,
      {
        "max": 15,
      },
    ],
    "vitest/max-nested-describe": [
      2,
      {
        "max": 5,
      },
    ],
    "vitest/no-alias-methods": [
      2,
    ],
    "vitest/no-commented-out-tests": [
      2,
    ],
    "vitest/no-conditional-expect": [
      2,
      {
        "expectAssertions": false,
      },
    ],
    "vitest/no-conditional-in-test": [
      2,
    ],
    "vitest/no-conditional-tests": [
      2,
    ],
    "vitest/no-disabled-tests": [
      0,
    ],
    "vitest/no-duplicate-hooks": [
      2,
    ],
    "vitest/no-focused-tests": [
      2,
      {
        "fixable": true,
      },
    ],
    "vitest/no-hooks": [
      0,
      {
        "allow": [],
      },
    ],
    "vitest/no-identical-title": [
      2,
    ],
    "vitest/no-import-node-test": [
      2,
    ],
    "vitest/no-importing-vitest-globals": [
      0,
    ],
    "vitest/no-interpolation-in-snapshots": [
      2,
    ],
    "vitest/no-large-snapshots": [
      2,
      {
        "maxSize": 500,
      },
    ],
    "vitest/no-mocks-import": [
      2,
    ],
    "vitest/no-restricted-matchers": [
      2,
      {},
    ],
    "vitest/no-restricted-vi-methods": [
      2,
      {},
    ],
    "vitest/no-standalone-expect": [
      2,
      {
        "additionalTestBlockFunctions": [],
      },
    ],
    "vitest/no-test-prefixes": [
      2,
    ],
    "vitest/no-test-return-statement": [
      2,
    ],
    "vitest/no-unneeded-async-expect-function": [
      2,
    ],
    "vitest/padding-around-after-all-blocks": [
      2,
    ],
    "vitest/padding-around-after-each-blocks": [
      2,
    ],
    "vitest/padding-around-all": [
      0,
    ],
    "vitest/padding-around-before-all-blocks": [
      2,
    ],
    "vitest/padding-around-before-each-blocks": [
      2,
    ],
    "vitest/padding-around-describe-blocks": [
      2,
    ],
    "vitest/padding-around-expect-groups": [
      2,
    ],
    "vitest/padding-around-test-blocks": [
      2,
    ],
    "vitest/prefer-called-exactly-once-with": [
      2,
    ],
    "vitest/prefer-called-once": [
      0,
    ],
    "vitest/prefer-called-times": [
      2,
    ],
    "vitest/prefer-called-with": [
      2,
    ],
    "vitest/prefer-comparison-matcher": [
      2,
    ],
    "vitest/prefer-describe-function-title": [
      2,
    ],
    "vitest/prefer-each": [
      2,
    ],
    "vitest/prefer-equality-matcher": [
      2,
    ],
    "vitest/prefer-expect-assertions": [
      0,
      {
        "onlyFunctionsWithAsyncKeyword": false,
        "onlyFunctionsWithExpectInCallback": false,
        "onlyFunctionsWithExpectInLoop": false,
      },
    ],
    "vitest/prefer-expect-resolves": [
      2,
    ],
    "vitest/prefer-expect-type-of": [
      2,
    ],
    "vitest/prefer-hooks-in-order": [
      2,
    ],
    "vitest/prefer-hooks-on-top": [
      2,
    ],
    "vitest/prefer-import-in-mock": [
      0,
      {
        "fixable": true,
      },
    ],
    "vitest/prefer-importing-vitest-globals": [
      2,
    ],
    "vitest/prefer-lowercase-title": [
      0,
      {
        "allowedPrefixes": [],
        "ignore": [],
        "ignoreTopLevelDescribe": false,
        "lowercaseFirstCharacterOnly": true,
      },
    ],
    "vitest/prefer-mock-promise-shorthand": [
      2,
    ],
    "vitest/prefer-mock-return-shorthand": [
      2,
    ],
    "vitest/prefer-snapshot-hint": [
      2,
      "multi",
    ],
    "vitest/prefer-spy-on": [
      2,
    ],
    "vitest/prefer-strict-boolean-matchers": [
      2,
    ],
    "vitest/prefer-strict-equal": [
      2,
    ],
    "vitest/prefer-to-be": [
      2,
    ],
    "vitest/prefer-to-be-falsy": [
      0,
    ],
    "vitest/prefer-to-be-object": [
      2,
    ],
    "vitest/prefer-to-be-truthy": [
      0,
    ],
    "vitest/prefer-to-contain": [
      2,
    ],
    "vitest/prefer-to-have-length": [
      2,
    ],
    "vitest/prefer-todo": [
      2,
    ],
    "vitest/require-hook": [
      2,
      {
        "allowedFunctionCalls": [],
      },
    ],
    "vitest/require-local-test-context-for-concurrent-snapshots": [
      2,
    ],
    "vitest/require-to-throw-message": [
      2,
    ],
    "vitest/require-top-level-describe": [
      2,
      {
        "maxNumberOfTopLevelDescribes": null,
      },
    ],
    "vitest/valid-describe-callback": [
      2,
    ],
    "vitest/valid-expect": [
      2,
      {
        "alwaysAwait": false,
        "asyncMatchers": [
          "toReject",
          "toResolve",
        ],
        "maxArgs": 1,
        "minArgs": 1,
      },
    ],
    "vitest/valid-title": [
      2,
      {
        "allowArguments": true,
        "disallowedWords": [],
        "ignoreTypeOfDescribeName": false,
      },
    ],
  },
}