-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
49 lines (48 loc) · 1009 Bytes
/
.eslintrc
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
{
"parser": "@babel/eslint-parser",
"extends": [
"airbnb",
"@remix-run/eslint-config"
],
"plugins": [
"react",
"jsx-a11y",
"import"
],
"rules": {
"import/no-unresolved": "off",
"react/jsx-filename-extension": [
1,
{
"extensions": [".js", ".jsx"]
},
],
"import/extensions": [0],
"import/no-named-as-default": "off",
"import/no-named-as-default-member": "off",
"jsx-a11y/no-static-element-interactions": "off",
"no-restricted-exports": "off",
"no-case-declarations":"off",
"jsx-a11y/click-events-have-key-events": "off",
"react/destructuring-assignment":"off",
"react/jsx-no-bind": "off",
"react/jsx-props-no-spreading": "off",
},
"env": {
"jest": true,
"browser": true
},
"overrides": [
{
"files": [
"**/*.js",
"**/*.jsx",
"**/*.ts",
"**/*.tsx"
],
"rules": {
"react-hooks/exhaustive-deps": "off"
}
}
]
}