import js from "@eslint/js"; import reactHooks from "eslint-plugin-react-hooks"; import globals from "globals"; import tseslint from "typescript-eslint"; export default tseslint.config( { ignores: ["dist", "coverage", "node_modules", "*.config.js"], linterOptions: { reportUnusedDisableDirectives: "off", }, }, js.configs.recommended, ...tseslint.configs.recommended, { files: ["src/**/*.{ts,tsx}"], languageOptions: { ecmaVersion: 2020, globals: { ...globals.browser, ...globals.es2020, }, }, plugins: { "react-hooks": reactHooks, }, rules: { "react-hooks/rules-of-hooks": "error", }, }, );