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

Fix a bug in Layout/ClosingParenthesisIndentation #6712

Merged

Commits on Jan 27, 2019

  1. Configuration menu
    Copy the full SHA
    80f2fb6 View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2019

  1. Fix a bug in Layout/ClosingParenthesisIndentation

    ClosingParenthesisIndentation would complain about
    
        block_adds_extra_indentation do
          some_method(a,
            x: 1,
            y: 2
          )
        end
    
    saying it should be indented as:
    
        block_adds_extra_indentation do
          some_method(a,
            x: 1,
            y: 2
        )
        end
    
    This issue appeared after the bugfix commit 1653112.
    bquorning committed Jan 28, 2019
    Configuration menu
    Copy the full SHA
    85ba07b View commit details
    Browse the repository at this point in the history