module.exports = { root: true, parser: '@typescript-eslint/parser', // Specifies the ESLint parser extends: [ 'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin 'prettier/@typescript-eslint', // Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier 'plugin:prettier/recommended', // Enables eslint-plugin-prettier and displays prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array. 'plugin:jsx-a11y/recommended', 'plugin:react/recommended', 'plugin:react-hooks/recommended', 'prettier/react', ], parserOptions: { ecmaVersion: 6, sourceType: 'module', ecmaFeatures: { jsx: true, }, }, rules: { '@typescript-eslint/camelcase': 0, '@typescript-eslint/no-use-before-define': 0, 'jsx-a11y/no-noninteractive-tabindex': 0, 'arrow-parens': 'off', 'jsx-a11y/anchor-is-valid': 'off', 'no-console': 1, 'react-hooks/rules-of-hooks': 'error', 'react-hooks/exhaustive-deps': 'warn', '@typescript-eslint/explicit-function-return-type': 'off', 'prettier/prettier': ['error', { endOfLine: 'auto' }], 'formatjs/no-offset': 'error', }, overrides: [ { files: ['**/*.tsx'], rules: { 'react/prop-types': 'off', }, }, ], plugins: ['jsx-a11y', 'prettier', 'react-hooks', 'formatjs'], settings: { react: { pragma: 'React', version: '16.8', }, }, env: { browser: true, node: true, jest: true, es6: true, }, reportUnusedDisableDirectives: true, };