diff --git a/.eslintrc b/.eslintrc index a81fb56f3..da893862d 100644 --- a/.eslintrc +++ b/.eslintrc @@ -16,6 +16,7 @@ "document": false, "escape": false, "exports": false, + "fetch": false, "global": false, "jest": false, "Map": true, diff --git a/Examples/UIExplorer/ExampleTypes.js b/Examples/UIExplorer/ExampleTypes.js index 7f6ff08d8..44db06a6c 100644 --- a/Examples/UIExplorer/ExampleTypes.js +++ b/Examples/UIExplorer/ExampleTypes.js @@ -27,4 +27,3 @@ export type ExampleModule = { examples: Array; external?: bool; }; - diff --git a/Examples/UIExplorer/MapViewExample.js b/Examples/UIExplorer/MapViewExample.js index e8dae25ac..5df00236d 100644 --- a/Examples/UIExplorer/MapViewExample.js +++ b/Examples/UIExplorer/MapViewExample.js @@ -29,7 +29,7 @@ var regionText = { longitude: '0', latitudeDelta: '0', longitudeDelta: '0', -} +}; var MapRegionInput = React.createClass({ diff --git a/Examples/UIExplorer/NavigatorIOSColorsExample.js b/Examples/UIExplorer/NavigatorIOSColorsExample.js index 386586f23..a045807c7 100644 --- a/Examples/UIExplorer/NavigatorIOSColorsExample.js +++ b/Examples/UIExplorer/NavigatorIOSColorsExample.js @@ -45,7 +45,7 @@ var NavigatorIOSColors = React.createClass({ render: function() { // Set StatusBar with light contents to get better contrast - StatusBarIOS.setStyle(StatusBarIOS.Style['lightContent']); + StatusBarIOS.setStyle(StatusBarIOS.Style.lightContent); return ( {this._renderContent('#21551C', 'Green Tab')} diff --git a/Examples/UIExplorer/TextInputExample.js b/Examples/UIExplorer/TextInputExample.js index 922dd9607..10064491d 100644 --- a/Examples/UIExplorer/TextInputExample.js +++ b/Examples/UIExplorer/TextInputExample.js @@ -387,7 +387,7 @@ exports.examples = [ - ) + ); } } ];