Sha256: 858bcce17af5841b3dbdcb11382ef490056c8fdd3bd928b126938f5b927d3a8f

Contents?: true

Size: 1.25 KB

Versions: 2

Compression:

Stored size: 1.25 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Layout
      # This cop ensures that each argument in a multi-line method call
      # starts on a separate line.
      #
      # @example
      #
      #   # bad
      #   foo(a, b,
      #     c
      #   )
      #
      #   # good
      #   foo(
      #     a,
      #     b,
      #     c
      #   )
      class MultilineMethodArgumentLineBreaks < Cop
        include(MultilineElementLineBreaks)

        MSG = 'Each argument in a multi-line method call must start ' \
          'on a separate line.'

        def on_send(node)
          args = node.arguments

          # If there is a trailing hash arg without explicit braces, like this:
          #
          #    method(1, 'key1' => value1, 'key2' => value2)
          #
          # ...then each key/value pair is treated as a method 'argument'
          # when determining where line breaks should appear.
          if (last_arg = args.last)
            if last_arg.hash_type? && !last_arg.braces?
              args = args.concat(args.pop.children)
            end
          end

          check_line_breaks(node, args)
        end

        def autocorrect(node)
          EmptyLineCorrector.insert_before(node)
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rubocop-0.70.0 lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb
rubocop-0.69.0 lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb