import js from "@eslint/js"; import globals from "globals"; import tseslint from "typescript-eslint"; import pluginReact from "eslint-plugin-react"; import { defineConfig } from "eslint/config"; export default defineConfig([ { files: ["**/*.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"], plugins: { js }, extends: ["js/recommended"], }, { files: ["**/*.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"], languageOptions: { globals: globals.browser }, }, tseslint.configs.recommended, pluginReact.configs.flat.recommended, { rules: { "react/react-in-jsx-scope": "off", "@typescript-eslint/no-explicit-any": "off", "react/prop-types": "off", "@typescript-eslint/no-unused-expressions": "off", "prefer-const": "off", "@typescript-eslint/no-require-imports": "off", }, }, ]);