{
  "root": true,
  "env": { "browser": true, "es2020": true },
  "extends": [
    "plugin:@typescript-eslint/recommended",
    "plugin:react-hooks/recommended",
    "plugin:prettier/recommended"
  ],
  "ignorePatterns": ["dist", ".eslintrc.json"],
  "parser": "@typescript-eslint/parser",
  "plugins": ["react-refresh", "prettier", "import", "react"],
  "rules": {
    "react-refresh/only-export-components": ["warn", { "allowConstantExport": true }],
    "prettier/prettier": [
      "warn",
      {
        "endOfLine": "auto",
        "printWidth": 100,
        "trailingComma": "all",
        "singleQuote": true,
        "bracketSpacing": true
      }
    ],
    "react/self-closing-comp": "warn",
    "import/order": [
      "warn",
      {
        "groups": ["builtin", "object", "external", "internal", "parent", "sibling", "index"],
        "pathGroups": [
          {
            "pattern": "~/**",
            "group": "external",
            "position": "after"
          }
        ],
        "newlines-between": "always"
      }
    ]
  }
}

