| module.exports = { |
| env: { |
| browser: true, |
| es2021: true, |
| node: true, |
| }, |
| extends: [ |
| 'eslint:recommended', |
| 'plugin:@typescript-eslint/recommended', |
| 'plugin:react/recommended', |
| 'plugin:prettier/recommended', |
| ], |
| overrides: [], |
| parser: '@typescript-eslint/parser', |
| parserOptions: { |
| ecmaVersion: 'latest', |
| sourceType: 'module', |
| }, |
| plugins: ['react', 'unused-imports'], |
| rules: { |
| 'unused-imports/no-unused-imports': 'error', |
| 'react/react-in-jsx-scope': 'off', |
| 'prettier/prettier': [ |
| 'error', |
| { |
| endOfLine: 'auto', |
| }, |
| ], |
| }, |
| settings: { |
| 'import/parsers': { |
| '@typescript-eslint/parser': ['.ts', '.tsx'], |
| }, |
| react: { |
| version: 'detect', |
| }, |
| 'import/resolver': { |
| node: { |
| paths: ['src'], |
| extensions: ['.js', '.jsx', '.ts', '.tsx'], |
| }, |
| }, |
| }, |
| }; |
|
|