import js from "@eslint/js"; import tseslint from "typescript-eslint"; import reactHooks from "eslint-plugin-react-hooks"; import reactRefresh from "eslint-plugin-react-refresh"; import prettier from "eslint-config-prettier"; import globals from "globals"; export default tseslint.config( js.configs.recommended, ...tseslint.configs.recommended, prettier, { languageOptions: { globals: { ...globals.browser, ...globals.node, }, }, }, { files: ["**/*.{ts,tsx}"], plugins: { "react-hooks": reactHooks, "react-refresh": reactRefresh, }, rules: { ...reactHooks.configs.recommended.rules, "react-refresh/only-export-components": ["warn", { allowConstantExport: true }], }, }, { ignores: ["build/", "dist/", "src-tauri/target/", "node_modules/"], } );