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
foo = if bar something elsif baz other_thing else fail end
This will loop forever when calling rubocop -a --only Style/IndentationWidth foo.rb
rubocop -a --only Style/IndentationWidth foo.rb
Style/ElseAlignment fixes the loop i.e. when running rubocop -a --only Style/IndentationWidth,Style/ElseAlignment foo.rb
Style/ElseAlignment
rubocop -a --only Style/IndentationWidth,Style/ElseAlignment foo.rb
using version 0.28.0
0.28.0
The text was updated successfully, but these errors were encountered:
6ecbeec
Merge pull request #1505 from jonas054/1500_fix_indentation_width
9b1094b
[Fix #1500] Remove double handling of elsif in IndentationWidth
jonas054
No branches or pull requests
This will loop forever when calling
rubocop -a --only Style/IndentationWidth foo.rb
Style/ElseAlignment
fixes the loop i.e. when runningrubocop -a --only Style/IndentationWidth,Style/ElseAlignment foo.rb
using version
0.28.0
The text was updated successfully, but these errors were encountered: