2017-01-28 23:13:20 -06:00
|
|
|
{
|
|
|
|
|
"parser": "babel-eslint",
|
|
|
|
|
"env": {
|
2017-06-11 18:32:21 -05:00
|
|
|
"browser": true,
|
|
|
|
|
"es6": true
|
2017-01-28 23:13:20 -06:00
|
|
|
},
|
|
|
|
|
"plugins": [
|
|
|
|
|
"react",
|
2017-04-23 20:15:46 -05:00
|
|
|
"react-native"
|
2017-01-28 23:13:20 -06:00
|
|
|
],
|
|
|
|
|
"extends": [
|
|
|
|
|
"eslint:recommended",
|
2019-06-22 15:48:52 +00:00
|
|
|
"plugin:react/recommended"
|
2017-01-28 23:13:20 -06:00
|
|
|
],
|
2017-08-27 14:29:37 -05:00
|
|
|
"globals": {
|
|
|
|
|
"Position": false,
|
2017-10-29 20:18:33 -05:00
|
|
|
"navigator": false,
|
|
|
|
|
"__DEV__": true
|
2017-08-27 14:29:37 -05:00
|
|
|
},
|
2017-01-28 23:13:20 -06:00
|
|
|
"rules": {
|
2020-04-26 12:27:24 -05:00
|
|
|
"react/display-name": 1,
|
|
|
|
|
"react/prop-types": 0
|
2019-06-22 15:48:52 +00:00
|
|
|
},
|
|
|
|
|
"settings": {
|
|
|
|
|
"react": {
|
|
|
|
|
"version": "detect",
|
|
|
|
|
"pragma": "React"
|
|
|
|
|
}
|
2017-01-28 23:13:20 -06:00
|
|
|
}
|
|
|
|
|
}
|