Sha256: 91987aaa5c3eb191c251409b9c2543cb99d4ab57338ac03a7b6a826fb6ef17b9
Contents?: true
Size: 936 Bytes
Versions: 35
Compression:
Stored size: 936 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module Layout # This cop checks for a line break before the first element in a # multi-line array. # # @example # # # bad # [ :a, # :b] # # # good # [ # :a, # :b] # class FirstArrayElementLineBreak < Base include FirstElementLineBreak extend AutoCorrector MSG = 'Add a line break before the first element of a ' \ 'multi-line array.' def on_array(node) return if !node.loc.begin && !assignment_on_same_line?(node) check_children_line_break(node, node.children) end private def assignment_on_same_line?(node) source = node.source_range.source_line[0...node.loc.column] /\s*=\s*$/.match?(source) end end end end end
Version data entries
35 entries across 35 versions & 3 rubygems