You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rufo allows for some flexibility regarding aligning call parameters, but does not allow for a common pattern when using heredocs. Specifically:
# This is allowed:foo:arg1,:arg2,:arg3# This is not allowedfoo:arg1,<<-TEXT blahTEXT# This is the preferred alignment (or starting the heredoc on a new line)foo:arg1,<<-TEXT blah TEXT
The disallowed format is a common one that is in many cases easier to read. Is this restriction intentional?
The text was updated successfully, but these errors were encountered:
Rufo allows for some flexibility regarding aligning call parameters, but does not allow for a common pattern when using heredocs. Specifically:
The disallowed format is a common one that is in many cases easier to read. Is this restriction intentional?
The text was updated successfully, but these errors were encountered: