-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.eslintrc
More file actions
40 lines (40 loc) · 696 Bytes
/
.eslintrc
File metadata and controls
40 lines (40 loc) · 696 Bytes
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
{
"parser" : "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"extends" : [
"standard",
"standard-react",
],
"plugins": [
"babel",
"import"
],
"rules": {
"react/prop-types": 0,
"jsx-quotes": 0,
"camelcase": 0,
"curly": 0,
"import/no-unresolved": 2,
"import/named": 2,
"import/namespace": 2,
"import/default": 2,
"import/export": 2,
"no-console": 0,
"react/react-in-jsx-scope": 0
},
"settings": {
"import/resolve": {
"extensions": [ ".js", ".jsx" ]
},
"import/extensions": [
".js",
".jsx"
]
}
}