// eslint-disable-next-line no-undef module.exports = { root: true, env: { es6: true, }, parser: "@typescript-eslint/parser", plugins: ["@typescript-eslint", "react-hooks"], extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"], rules: { "@typescript-eslint/explicit-module-boundary-types": "off", "@typescript-eslint/no-explicit-any": "off", "react-hooks/rules-of-hooks": "error", "react-hooks/exhaustive-deps": "warn", }, }