-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
47 lines (47 loc) · 1.13 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
module.exports = {
env: {
browser: true,
es2021: true,
node: true,
'jest/globals': true
},
extends: [
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'next/core-web-vitals',
'airbnb',
'prettier'
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true
},
ecmaVersion: 'latest',
sourceType: 'module'
},
plugins: ['react', '@typescript-eslint', 'jest'],
rules: {
'react/react-in-jsx-scope': 0,
'react/jsx-filename-extension': [
1,
{ extensions: ['.js', '.jsx', '.ts', '.tsx', '.svg'] }
],
'react/function-component-definition': 0,
'react/jsx-props-no-spreading': 0,
'react/require-default-props': 0,
'react/prop-types': 0,
'react-hooks/exhaustive-deps': 0,
'import/no-unresolved': ['error', { ignore: ['\\.svg$'] }],
'import/extensions': [
'error',
'never',
{ ignorePackage: true, svg: 'always' }
],
'import/prefer-default-export': 0,
'import/no-extraneous-dependencies': 0,
'no-redeclare': 0,
'jsx-a11y/media-has-caption': 0,
'default-param-last': 0
}
};