-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
45 lines (45 loc) · 878 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
{
"extends": [
"prettier",
"onpaik"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"env": {
"es6": true,
"browser": true,
"node": true,
"jest": true
},
"rules": {
"consistent-return": "off",
"jsx-a11y/anchor-is-valid":"off",
"comma-dangle":"off",
"semi":"off",
"jsx-a11y/href-no-hash": [0],
"react/react-in-jsx-scope":"off",
"react/prop-types":"off",
"react/destructuring-assignment":"off"
},
"globals": {
},
"settings": {
"import/resolver": {
"webpack": {
"config": {
"resolve": {
"extensions": ["", ".js", ".jsx"],
"modules": ["src", ".", "node_modules"]
}
}
}
}
}
}