-
-
Notifications
You must be signed in to change notification settings - Fork 99
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
Chained method call with block is split too soon #929
Comments
Oof yeah should definitely be what you expect. I'll take a look! |
Just wanting to +1 this. Metadata
InputRails.application.routes.draw do
root 'articles#index'
resources :articles
end OutputRails
.application
.routes
.draw do
root 'articles#index'
resources :articles
end Expected outputRails.application.routes.draw do
root 'articles#index'
resources :articles
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Metadata
@prettier/plugin-ruby
orprettier
gem version: 1.6.1Input
Current output
Expected output
The input looks good to me. None of the lines are close to the 80 character width. I find the current output more difficult to read.
The text was updated successfully, but these errors were encountered: