We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 132fb15 commit 0c2f70fCopy full SHA for 0c2f70f
.eslintrc
@@ -1,6 +1,10 @@
1
{
2
"parser": "babel-eslint",
3
"rules": {
4
+ "max-len": [
5
+ "error",
6
+ { "code": 80, "tabWidth": 2 }
7
+ ],
8
"indent": [
9
1,
10
2,
@@ -30,10 +34,12 @@
30
34
"node": true
31
35
},
32
36
"globals": {
33
- '__BASE_URL__': true,
- expect: true
37
+ "expect": true
38
- "extends": "eslint:recommended",
39
+ "extends": [
40
+ "eslint:recommended",
41
+ "plugin:react/recommended"
42
43
"parserOptions": {
44
"sourceType": "module",
45
"ecmaFeatures": {
@@ -43,6 +49,7 @@
49
"ecmaVersion": 6
50
51
"plugins": [
46
- "react"
52
+ "babel",
53
+ "react"
47
54
]
48
55
}
0 commit comments