aretherecookies-mobile/.eslintrc

19 lines
325 B
Text
Raw Normal View History

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