{
  "organizeImports": {
    "enabled": true
  },
  "formatter": {
    "useEditorconfig": true
  },
  "overrides": [
    {
      "include": [".vscode/**", "components.d.ts"],
      "json": {
        "parser": {
          "allowComments": true,
          "allowTrailingCommas": true
        }
      }
    }
  ],
  "javascript": {
    "formatter": {
      "jsxQuoteStyle": "double",
      "quoteProperties": "asNeeded",
      "trailingCommas": "all",
      "semicolons": "asNeeded",
      "arrowParentheses": "always",
      "bracketSpacing": true,
      "bracketSameLine": false,
      "quoteStyle": "single",
      "attributePosition": "auto",
      "indentStyle": "space",
      "indentWidth": 2,
      "lineEnding": "lf",
      "lineWidth": 120
    }
  },
  "json": {
    "parser": {
      "allowComments": true
    },
    "formatter": {
      "indentStyle": "space",
      "indentWidth": 2,
      "lineEnding": "lf"
    }
  },
  "linter": {
    "enabled": true,
    "rules": {
      "recommended": true,
      "style": {
        "noParameterAssign": "off",
        "noUnusedTemplateLiteral": "off",
        "useBlockStatements": "off"
      },
      "complexity": {
        "noForEach": "off",
        "noStaticOnlyClass": "off",
        "noThisInStatic": "off",
        "noBannedTypes": "off"
      },
      "suspicious": {
        "noExplicitAny": "off",
        "noShadowRestrictedNames": "off",
        "noImplicitAnyLet": "off"
      }
    }
  },
  "files": {
    "ignore": [
      "**/.vite-ssg-temp/*",
      "components.d.ts",
      "database/migrations/*",
      "storage/framework/types/*",
      "storage/framework/cache/*",
      "storage/framework/core/vite-config/src/*.ts.timestamp*",
      "storage/framework/core/orm/src/generated/*",
      "storage/framework/core/components/notification/packages/Toast.vue",
      "dictionary.txt"
    ]
  },
  "vcs": {
    "enabled": true,
    "clientKind": "git",
    "useIgnoreFile": true,
    "defaultBranch": "main"
  }
}
