We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
RuFo 0.7.0 Ruby 2.4.6
RuFo is behaving weirdly on literal arrays with interpolation at the beginning of a string. See this for example:
test = %W[ #{a}test ]
Running RuFo on it will format to:
Running RuFo again will format to:
The interpolation has to be at the beginning of the string.
test = %W[ test #{a}test test#{a} test#{a}test ]
Will format to:
The text was updated successfully, but these errors were encountered:
puts :foo, bar: { baz: :qux, }
Also needs two runs to indent, which means rufo . && rufo --check will fail.
rufo . && rufo --check
Sorry, something went wrong.
No branches or pull requests
RuFo is behaving weirdly on literal arrays with interpolation at the beginning of a string. See this for example:
Running RuFo on it will format to:
Running RuFo again will format to:
The interpolation has to be at the beginning of the string.
Will format to:
The text was updated successfully, but these errors were encountered: