Sha256: 4b0b9a7703d182f74cc38c7493ed1cf6abdf7e9244d98c4840c4de016a6a190a

Contents?: true

Size: 1.41 KB

Versions: 160

Compression:

Stored size: 1.41 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Layout
      # Checks for a line break before the first element in a
      # multi-line array.
      #
      # @example
      #
      #   # bad
      #   [ :a,
      #     :b]
      #
      #   # good
      #   [
      #     :a,
      #     :b]
      #
      #   # good
      #   [:a, :b]
      #
      # @example AllowMultilineFinalElement: false (default)
      #
      #   # bad
      #   [ :a, {
      #     :b => :c
      #   }]
      #
      #   # good
      #   [
      #     :a, {
      #     :b => :c
      #   }]
      #
      # @example AllowMultilineFinalElement: true
      #
      #   # good
      #   [:a, {
      #     :b => :c
      #   }]
      #
      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, ignore_last: ignore_last_element?)
        end

        private

        def assignment_on_same_line?(node)
          source = node.source_range.source_line[0...node.loc.column]
          /\s*=\s*$/.match?(source)
        end

        def ignore_last_element?
          !!cop_config['AllowMultilineFinalElement']
        end
      end
    end
  end
end

Version data entries

160 entries across 159 versions & 17 rubygems

Version Path
rubocop-1.74.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.73.2 lib/rubocop/cop/layout/first_array_element_line_break.rb
siteimprove_api_client-1.0.1 vendor/bundle/ruby/3.2.0/gems/rubocop-1.73.1/lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.73.1 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.73.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.72.2 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.72.1 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.72.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.71.2 lib/rubocop/cop/layout/first_array_element_line_break.rb
tailscale_middleware-0.0.3 vendor/cache/ruby/3.4.0/gems/rubocop-1.71.1/lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.71.1 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.71.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.70.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.69.2 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.69.1 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.69.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.68.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.67.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.66.1 lib/rubocop/cop/layout/first_array_element_line_break.rb