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",
|
|
|
|
|
"plugin:react/recommended"
|
|
|
|
|
],
|
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": {
|
|
|
|
|
// overrides
|
2017-04-23 20:15:46 -05:00
|
|
|
"react/display-name": 1
|
2017-01-28 23:13:20 -06:00
|
|
|
}
|
|
|
|
|
}
|