Sha256: ad306dd1d195d52f1eb1def5d44578e5fefa02caad2e02dded144cd2cca7ee86

Contents?: true

Size: 1.6 KB

Versions: 17

Compression:

Stored size: 1.6 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 AllowMultilineFinalElement: false (default)
      #
      #     # bad
      #     [ :a,
      #       :b]
      #
      #     # bad
      #     [ :a, {
      #       :b => :c
      #     }]
      #
      #     # good
      #     [:a, :b]
      #
      #     # good
      #     [
      #       :a,
      #       :b]
      #
      #     # good
      #     [
      #       :a, {
      #       :b => :c
      #     }]
      #
      # @example AllowMultilineFinalElement: true
      #
      #     # bad
      #     [ :a,
      #       :b]
      #
      #     # good
      #     [ :a, {
      #       :b => :c
      #     }]
      #
      #     # good
      #     [
      #       :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, 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

17 entries across 17 versions & 3 rubygems

Version Path
rubocop-1.50.1 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.50.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.49.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
call_your_name-0.1.0 vendor/bundle/ruby/3.1.0/gems/rubocop-1.48.1/lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.48.1 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.48.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.47.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
zilla-0.2.0 vendor/bundle/ruby/3.2.0/gems/rubocop-1.46.0/lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.46.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.45.1 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.45.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.44.1 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.44.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.43.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.42.0 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.41.1 lib/rubocop/cop/layout/first_array_element_line_break.rb
rubocop-1.41.0 lib/rubocop/cop/layout/first_array_element_line_break.rb