codeclimate/codeclimate-rubocop

View on GitHub
config/contents/style/multiline_operation_indentation.md

Summary

Maintainability
Test Coverage
This cop checks the indentation of the right hand side operand in
binary operations that span more than one line.

### Example:
    # bad
    if a +
    b
      something
    end