Sha256: 8bb451009e2f767911677eef8f9548b086e064494aca3756f595f99046b4f8ea

Contents?: true

Size: 1.34 KB

Versions: 25

Compression:

Stored size: 1.34 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.'.freeze

        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_method_line_break(node, args)
        end

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

Version data entries

25 entries across 23 versions & 3 rubygems

Version Path
rubocop-0.63.1 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-0.63.0 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-0.62.0 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-0.61.1 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-0.61.0 lib/rubocop/cop/layout/first_method_argument_line_break.rb
config_gems_initialization_aim-0.1.4 vendor/bundle/ruby/2.5.0/gems/config_gems_initialization_aim-0.1.1/vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/cop/layout/first_method_argument_line_break.rb
config_gems_initialization_aim-0.1.4 vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/cop/layout/first_method_argument_line_break.rb
config_gems_initialization_aim-0.1.3 vendor/bundle/ruby/2.5.0/gems/config_gems_initialization_aim-0.1.1/vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/cop/layout/first_method_argument_line_break.rb
config_gems_initialization_aim-0.1.3 vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-0.60.0 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-0.59.2 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-0.59.1 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-0.59.0 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-0.58.2 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-0.58.1 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-0.58.0 lib/rubocop/cop/layout/first_method_argument_line_break.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/rubocop-0.57.2/lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-0.57.2 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-0.57.1 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-0.57.0 lib/rubocop/cop/layout/first_method_argument_line_break.rb