module.exports = { root: true, parser: '@typescript-eslint/parser', plugins: ['@typescript-eslint', 'react', 'react-hooks'], extends: [ 'eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:react/recommended', 'plugin:react-hooks/recommended', 'prettier', ], settings: { react: { version: 'detect' }, }, rules: { 'react/react-in-jsx-scope': 'off', '@typescript-eslint/no-explicit-any': 'warn', }, env: { browser: true, node: true, es2021: true, }, };