module.exports = { extends: [ 'eslint:recommended', 'plugin:react/recommended', // Uses the recommended rules from @eslint-plugin-react 'plugin:react-hooks/recommended', ], parser: '@typescript-eslint/parser', // Specifies the ESLint parser plugins: ['@typescript-eslint', 'react', 'react-hooks'], parserOptions: { ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features sourceType: 'module', // Allows for the use of imports ecmaFeatures: { jsx: true, // Allows for the parsing of JSX }, tsconfigRootDir: __dirname, project: './tsconfig.json', }, root: true, overrides: [ { files: ['**/*.{ts,tsx}'], extends: [ 'plugin:@typescript-eslint/recommended', 'plugin:@typescript-eslint/stylistic-type-checked', ], rules: { '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/no-unused-vars': 'warn', '@typescript-eslint/no-explicit-any': 'warn', '@typescript-eslint/prefer-optional-chain': 'warn', '@typescript-eslint/prefer-as-const': 'error', '@typescript-eslint/await-thenable': 'error', '@typescript-eslint/no-var-requires': 'off', '@typescript-eslint/no-empty-function': 'off', // fixes a build error }, }, ], rules: { // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs 'react/react-in-jsx-scope': 'off', 'react/prop-types': 'warn', 'react/self-closing-comp': 'warn', }, settings: { react: { version: 'detect', // Tells eslint-plugin-react to automatically detect the version of React to use }, }, }