Sha256: ae3a70317390a6cf34da94bf63c1bd966861e61b3ad836e27dbbc0ad816442c5

Contents?: true

Size: 1.29 KB

Versions: 12

Compression:

Stored size: 1.29 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)
          return if node.method?(:[]=)

          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

12 entries across 11 versions & 3 rubygems

Version Path
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.79.0/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb
rubocop-0.83.0 lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb
rubocop-0.82.0 lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb
rubocop-0.81.0 lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb
rubocop-0.80.1 lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb
rubocop-0.80.0 lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/rubocop-0.79.0/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.79.0/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb
rubocop-0.79.0 lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb
rubocop-0.78.0 lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/rubocop-0.77.0/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb
rubocop-0.77.0 lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb