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
plaid-14.13.0 vendor/bundle/ruby/3.0.0/gems/rubocop-0.91.1/lib/rubocop/cop/layout/first_array_element_line_break.rb
plaid-14.12.1 vendor/bundle/ruby/3.0.0/gems/rubocop-0.91.1/lib/rubocop/cop/layout/first_array_element_line_break.rb
plaid-14.12.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/layout/first_array_element_line_break.rb
plaid-14.11.1 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/layout/first_array_element_line_break.rb
plaid-14.10.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/layout/first_array_element_line_break.rb
plaid-14.7.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.12.1 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.12.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.11.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.10.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.9.1 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.9.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.8.1 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.8.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.7.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.6.1 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.6.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.5.2 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.5.1 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.5.0 lib/rubocop/cop/layout/first_array_element_line_break.rb