codeclimate/codeclimate-rubocop

View on GitHub
config/contents/layout/first_hash_element_line_break.md

Summary

Maintainability
Test Coverage
This cop checks for a line break before the first element in a
multi-line hash.

### Example:

      # bad
      { a: 1,
        b: 2}

      # good
      {
        a: 1,
        b: 2 }