{
  "$schema": "../../../node_modules/oxlint/configuration_schema.json",
  "extends": ["../.oxlintrc.json"],
  "rules": {
    "typescript/consistent-type-assertions": "warn",
    "typescript/no-explicit-any": "warn",
    "typescript/no-unused-vars": "warn",
    "import/consistent-type-specifier-style": "warn",
    "eslint/no-unsafe-optional-chaining": "warn"
  },
  "overrides": [
    {
      "files": ["**/*.test.ts", "**/*.integ.test.ts", "**/*.integration.test.ts"],
      "rules": {
        "typescript/consistent-type-assertions": "warn",
        "typescript/no-explicit-any": "warn"
      }
    }
  ]
}
