forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: Fix the following problems resulting from running `npm run lint`: ``` Examples/Movies/SearchScreen.js 118:4 error 'fetch' is not defined no-undef 177:4 error 'fetch' is not defined no-undef Examples/UIExplorer/MapViewExample.js 32:1 warning Missing semicolon semi Examples/UIExplorer/NavigatorIOSColorsExample.js 48:26 warning ['lightContent'] is better written in dot notation dot-notation Examples/UIExplorer/TabBarIOSExample.js 81:16 warning Trailing spaces not allowed no-trailing-spaces Examples/UIExplorer/TextInputExample.js 390:7 warning Missing semicolon semi ✖ 6 problems ``` Closes facebook#1254 Github Author: Eric Sauter <[email protected]> Test Plan: Imported from GitHub, without a `Test Plan:` line.
- Loading branch information
Eric Sauter
committed
May 14, 2015
1 parent
babdc21
commit 711dd66
Showing
6 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,4 +27,3 @@ export type ExampleModule = { | |
examples: Array<Example>; | ||
external?: bool; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -387,7 +387,7 @@ exports.examples = [ | |
<View style={styles.multilineChild}/> | ||
</TextInput> | ||
</View> | ||
) | ||
); | ||
} | ||
} | ||
]; |