2 extends: ['@proton/eslint-config-proton'],
3 parser
: '@typescript-eslint/parser',
5 tsconfigRootDir
: __dirname
,
6 project
: './tsconfig.json',
9 'react/button-has-type': ['warn'],
10 'react/forbid-prop-types': ['warn'],
11 'react/no-array-index-key': ['warn'],
12 'import/no-internal-modules': [
15 forbid
: ['@proton/components', '@proton/components/index'],
18 'import/no-cycle': ['error', { maxDepth
: 1 }],
20 ignorePatterns
: ['.eslintrc.js'],
23 files
: ['**/__tests__/**/*.[jt]s?(x)', '**/?(*.)+(spec|test).[jt]s?(x)'],
24 extends: ['plugin:testing-library/react'],
26 'testing-library/no-node-access': 'warn',
27 'testing-library/no-unnecessary-act': 'warn',
28 'testing-library/prefer-screen-queries': 'warn',
29 'testing-library/prefer-find-by': 'warn',
30 'testing-library/prefer-presence-queries': 'warn',
31 'testing-library/render-result-naming-convention': 'warn',
32 'testing-library/no-container': 'warn',