Skip to content

Request: Configure how/when "fluent" call chains are chopped down. #3812

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

Closed
ragnese opened this issue Sep 27, 2019 · 2 comments
Closed

Request: Configure how/when "fluent" call chains are chopped down. #3812

ragnese opened this issue Sep 27, 2019 · 2 comments

Comments

@ragnese
Copy link

ragnese commented Sep 27, 2019

I prefer that fluent call chains are aggressively chopped down. I.e., I never want to see this:

foo().bar().baz().a();

I would always rather see:

foo()  
  .bar()  
  .baz()  
  .a();

Or at least:

foo().bar()  
     .baz()  
     .a();

Thank you!

@calebcartwright
Copy link
Member

Related #2263, #3693

@calebcartwright
Copy link
Member

Closing as a duplicate

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants