-
Notifications
You must be signed in to change notification settings - Fork 47k
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
Fix line lengths and test for lint/test passing. #6909
Fix line lengths and test for lint/test passing. #6909
Conversation
@@ -42,7 +42,9 @@ export type ReactYield = { | |||
continuation: mixed | |||
}; | |||
|
|||
exports.createCoroutine = function<T>(children : mixed, handler : CoroutineHandler<T>, props : T, key : ?string = null) : ReactCoroutine { | |||
exports.createCoroutine = function<T>( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We generally wrap long arg lists like this, can you tweak it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, no problem. To avoid an extra commit, will it work for me to amend the commit and force push to my fork? Or I can make a new pull request. What do you prefer?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
GitHub supports "squash and merge" now so feel free to add a new commit.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adjusted line breaks to match reviewer feedback.
@lexjacobs updated the pull request. |
@lexjacobs updated the pull request. |
@lexjacobs updated the pull request. |
(cherry picked from commit 29ed7c6)
(cherry picked from commit 29ed7c6)
CLA completed.
grunt test
andgrunt lint
were both failing.This pull request remedies that.