Sha256: 8828dcbce8cf9e5c435855e50868da737fa49977c556c4350703e8696727bb89

Contents?: true

Size: 1.36 KB

Versions: 10

Compression:

Stored size: 1.36 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Layout
      # This cop checks for a line break before the first argument in a
      # multi-line method call.
      #
      # @example
      #
      #     # bad
      #     method(foo, bar,
      #       baz)
      #
      #     # good
      #     method(
      #       foo, bar,
      #       baz)
      #
      #     # ignored
      #     method foo, bar,
      #       baz
      class FirstMethodArgumentLineBreak < Cop
        include FirstElementLineBreak

        MSG = 'Add a line break before the first argument of a ' \
              'multi-line method argument list.'

        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)
            args = args.concat(args.pop.children) if last_arg.hash_type? && !last_arg.braces?
          end

          check_method_line_break(node, args)
        end
        alias on_csend on_send
        alias on_super on_send

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

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
rubocop-0.88.0 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-0.87.1 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-0.87.0 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-0.86.0 lib/rubocop/cop/layout/first_method_argument_line_break.rb
files.com-1.0.1 vendor/bundle/ruby/2.5.0/gems/rubocop-0.85.1/lib/rubocop/cop/layout/first_method_argument_line_break.rb
rbhint-0.85.1.rc1 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-0.85.1 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rbhint-0.8.5.rc1 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-0.85.0 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-0.84.0 lib/rubocop/cop/layout/first_method_argument_line_break.rb