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 e111f44 commit 1873f9aCopy full SHA for 1873f9a
.eslintrc
@@ -11,6 +11,7 @@
11
"single"
12
],
13
"react/jsx-uses-react": 1,
14
+ "react/jsx-uses-vars": 1,
15
"linebreak-style": [
16
2,
17
"unix"
@@ -32,12 +33,17 @@
32
33
"__CORDOVA__": true,
34
"__PRODUCTION__": true,
35
"__DEVELOPMENT__": true,
- "__BASE_URL__": true
36
+ "__BASE_URL__": true,
37
+ expect: true
38
},
39
"extends": "eslint:recommended",
- "ecmaFeatures": {
- "jsx": true,
40
- "experimentalObjectRestSpread": true
+ "parserOptions": {
41
+ "sourceType": "module",
42
+ "ecmaFeatures": {
43
+ "experimentalObjectRestSpread": true,
44
+ "jsx": true
45
+ },
46
+ "ecmaVersion": 6
47
48
"plugins": [
49
"react"
0 commit comments