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

Version Path
rubocop-1.4.2 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.4.1 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.4.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.3.1 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.3.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.2.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.1.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.0.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-0.93.1 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-0.93.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-0.92.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-0.91.1 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-0.91.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.90.0/lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-0.90.0 lib/rubocop/cop/layout/first_array_element_line_break.rb