codeclimate/codeclimate-rubocop

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

Summary

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

### Example:

      # bad
      [ :a,
        :b]

      # good
      [
        :a,
        :b]