-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.eslintrc.js
More file actions
32 lines (32 loc) · 769 Bytes
/
Copy path.eslintrc.js
File metadata and controls
32 lines (32 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
module.exports = {
plugins: ['jest'],
settings: {
react: {
version: 'detect',
},
},
extends: [
'airbnb/hooks',
'react-app',
'plugin:jest/recommended',
'prettier',
'prettier/@typescript-eslint',
'prettier/react',
],
env: {
node: true,
browser: true,
jest: true,
serviceworker: true,
},
ignorePatterns: ['build', '.*.js', '*.config.js', 'node_modules'],
rules: {
'import/no-extraneous-dependencies': ['error'],
'import/no-self-import': 'error',
'import/no-useless-path-segments': ['error', { noUselessIndex: true }],
'import/prefer-default-export': 'off',
'react/destructuring-assignment': 'off',
'react/jsx-props-no-spreading': 'off',
'react/prop-types': 'off',
},
};