ruby-formatter/rufo

splat (*) inside method call inside class incorrect indentation

aaronjensen opened this issue · 0 comments

#~# ORIGINAL
class Foo
  bar(
    :foo,
      *bar,
      :qux,
  )
end

#~# EXPECTED
class Foo
  bar(
    :foo,
    *bar,
    :qux,
  )
end

Actual:

class Foo
  bar(
    :foo,
      *bar,
      :qux,
  )
end

Tested on master.