Method: RuboCop::Cop::Layout::FirstArrayElementIndentation#on_array
- Defined in:
- lib/rubocop/cop/layout/first_array_element_indentation.rb
#on_array(node) ⇒ Object
91 92 93 94 95 |
# File 'lib/rubocop/cop/layout/first_array_element_indentation.rb', line 91 def on_array(node) return if style != :consistent && enforce_first_argument_with_fixed_indentation? check(node, nil) if node.loc.begin end |