-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
62 lines (62 loc) · 1.44 KB
/
.eslintrc.js
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
module.exports = {
env: {
browser: true,
es6: true,
node: true,
},
settings: {
react: {
version: 'detect',
},
'import/resolver': {
node: {
paths: ['src'],
extensions: ['.js', '.jsx'],
},
},
},
extends: [
'airbnb',
'plugin:react/recommended', // Uses the recommended rules from @eslint-plugin-react
'plugin:react-hooks/recommended',
'plugin:react/jsx-runtime',
'plugin:import/recommended',
'prettier/react',
'plugin:prettier/recommended', // use prettier as a eslint rule
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parser: 'babel-eslint',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: 'module',
},
plugins: ['react', 'testing-library', 'prettier'],
rules: {
'react/jsx-filename-extension': [1, { extensions: ['.js', '.jsx'] }],
'no-underscore-dangle': 'off',
'react/prop-types': 'off',
'react-hooks/exhaustive-deps': 'off',
'react/jsx-key': 'off',
'react/jsx-uses-react': 'off',
'react/display-name': 'off',
'react/no-direct-mutation-state': 'off',
'react/no-unknown-property': 'off',
'react/react-in-jsx-scope': 'off',
'import/no-duplicates': 'off',
'import/no-named-as-default': 'off',
},
overrides: [
{
files: ['**/*.test.js', '**/*.test.jsx'],
env: {
jest: true,
},
},
],
};