/** @type {import("eslint").Linter.Config} */ module.exports = { root: true, extends: ["next/core-web-vitals"], rules: { "@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }], "@typescript-eslint/no-empty-object-type": "off", "@typescript-eslint/no-explicit-any": "off", "react-hooks/exhaustive-deps": "warn" } };