{
  "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
  "formatter": {
    "indentStyle": "space",
    "lineWidth": 120,
    "lineEnding": "lf"
  },
  "organizeImports": { "enabled": true },
  "javascript": {
    "formatter": {
      "quoteStyle": "single"
    }
  },
  "linter": {
    "enabled": true,
    "rules": {
      "recommended": true,
      "correctness": {
        "noUnsafeFinally": "error"
      },
      "suspicious": {
        "noExplicitAny": "off",
        "noConfusingVoidType": "warn",
        "noDuplicateObjectKeys": "error",
        "noDuplicateCase": "error",
        "noAssignInExpressions": "off"
      },
      "style": {
        "noUselessElse": "warn",
        "noVar": "error",
        "useConst": "error",
        "noNonNullAssertion": "off"
      },
      "complexity": {
        "noForEach": "off",
        "noExcessiveCognitiveComplexity": "warn"
      }
    }
  }
}
