Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing comma #674

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Examples/TicTacToe/TicTacToeApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ var styles = StyleSheet.create({
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'white'
backgroundColor: 'white',
},
title: {
fontFamily: 'Chalkduster',
Expand Down
2 changes: 1 addition & 1 deletion lint/linterTransform.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function setLinterTransform(transformSource) {
severity: 2,
line: e.lineNumber,
message: e.message,
source: text
source: text,
}];
}
var originalLines = text.split('\n');
Expand Down
4 changes: 2 additions & 2 deletions packager/blacklist.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ var sharedBlacklist = [
'website',
'node_modules/react-tools/src/utils/ImmutableObject.js',
'node_modules/react-tools/src/core/ReactInstanceHandles.js',
'node_modules/react-tools/src/event/EventPropagators.js'
'node_modules/react-tools/src/event/EventPropagators.js',
];

var webBlacklist = [
'.ios.js'
'.ios.js',
];

var iosBlacklist = [
Expand Down
2 changes: 1 addition & 1 deletion packager/packager.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ var options = parseCommandLine([{
description: 'add another root(s) to be used by the packager in this project',
}, {
command: 'assetRoots',
description: 'specify the root directories of app assets'
description: 'specify the root directories of app assets',
}]);

if (options.projectRoots) {
Expand Down
2 changes: 1 addition & 1 deletion packager/parseCommandLine.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* var argv = parseCommandLine([{
* command: 'web',
* description: 'Run in a web browser instead of iOS',
* default: true
* default: true,
* }])
*/
'use strict';
Expand Down