-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
41 lines (41 loc) · 841 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
{
"extends": [
"airbnb"
],
"plugins": [
"react-hooks"
],
"parser": "babel-eslint",
"rules": {
"react/jsx-props-no-spreading": "off",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"no-underscore-dangle": "off",
"object-curly-newline": "off",
"consistent-return": "off",
"react/button-has-type": "off",
"camelcase": "off",
"no-multi-spaces": "off",
"react/jsx-curly-spacing": "off",
"linebreak-style": 0,
"global-require": 0,
"eslint linebreak-style": [
0,
"error",
"windows"
],
"react/jsx-filename-extension": "off",
"import/no-dynamic-require": "off",
"react/prop-types": [
"error",
{
"ignore": [
"navigation"
]
}
]
},
"env": {
"jest": true
}
}