"rules": {
    "@typescript-eslint/no-unused-vars": "error",
    "@typescript-eslint/no-explicit-any": "warn",
    "@typescript-eslint/ban-ts-comment": "warn",
    "import/no-cycle": [1, { "maxDepth": 1 }],
    "import/order":[
      "error",
      {

        "groups": [ "external", "builtin" , "internal", "sibling","index" , "type" ],

        "pathGroups":[{
          "pattern": "{react,next,next/**}",
          "position": "before",
          "group": "external"
        }

      ],

        "pathGroupsExcludedImportTypes": [],
        "newlines-between": "always"



      }

    ]

  }

20220104