Sha256: 27f986d99981f79f1531d6c0a6c3a52933aca8d53337aedd8a242878c390734e

Contents?: true

Size: 1.28 KB

Versions: 35

Compression:

Stored size: 1.28 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 < Base
        include FirstElementLineBreak
        extend AutoCorrector

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

        def on_send(node)
          args = node.arguments.dup

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

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

Version data entries

35 entries across 35 versions & 3 rubygems

Version Path
plaid-14.13.0 vendor/bundle/ruby/3.0.0/gems/rubocop-0.91.1/lib/rubocop/cop/layout/first_method_argument_line_break.rb
plaid-14.12.1 vendor/bundle/ruby/3.0.0/gems/rubocop-0.91.1/lib/rubocop/cop/layout/first_method_argument_line_break.rb
plaid-14.12.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/layout/first_method_argument_line_break.rb
plaid-14.11.1 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/layout/first_method_argument_line_break.rb
plaid-14.10.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/layout/first_method_argument_line_break.rb
plaid-14.7.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-1.12.1 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-1.12.0 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-1.11.0 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-1.10.0 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-1.9.1 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-1.9.0 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-1.8.1 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-1.8.0 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-1.7.0 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-1.6.1 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-1.6.0 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-1.5.2 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-1.5.1 lib/rubocop/cop/layout/first_method_argument_line_break.rb
rubocop-1.5.0 lib/rubocop/cop/layout/first_method_argument_line_break.rb