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

A long rescue line or multiline rescue with multiple errors is formatted to be a single long line #356

Open
adamzapasnik opened this issue Nov 11, 2022 · 0 comments

Comments

@adamzapasnik
Copy link

Input file

begin

rescue OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError => exception

end

begin
rescue OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError => exception
end

Rubyfmt's output

begin

rescue OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError => exception
end

begin
rescue OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError, OpenSSL::SSL::SSLError => exception
end

This breaks because it

I don't want a single long line. I'd expect rubyfmt to do something similar to this:

begin

rescue OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError => exception
end

begin
rescue OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError,
       OpenSSL::SSL::SSLError => exception
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant