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

Aligning method arguments with a *splat #123

Closed
sudo-nice opened this issue Oct 5, 2018 · 1 comment · Fixed by #172
Closed

Aligning method arguments with a *splat #123

sudo-nice opened this issue Oct 5, 2018 · 1 comment · Fixed by #172

Comments

@sudo-nice
Copy link

sudo-nice commented Oct 5, 2018

Arguments with a splat are aligned unexpectedly:

foo(
  bar,
*baz,
qux
)
foo(*bar, baz,
          qux)
@bessey
Copy link
Member

bessey commented Nov 1, 2018

Another case:

foo(
  *thing,
:wrongly_indented
)

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

Successfully merging a pull request may close this issue.

2 participants