Sha256: 057626d876bedcd1c633b21c10c0d8e3996d2f921927ce01a9223f16428598f3

Contents?: true

Size: 1.29 KB

Versions: 14

Compression:

Stored size: 1.29 KB

Contents

# encoding: utf-8
# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # 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)
          _receiver, _name, *args = *node

          # 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.loc.begin # no explicit {
              args = args.concat(args.pop.children)
            end
          end

          check_method_line_break(node, args)
        end
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
fluent-plugin-detect-memb-exceptions-0.0.2 vendor/bundle/ruby/2.0.0/gems/rubocop-0.42.0/lib/rubocop/cop/style/first_method_argument_line_break.rb
fluent-plugin-detect-memb-exceptions-0.0.1 vendor/bundle/ruby/2.0.0/gems/rubocop-0.42.0/lib/rubocop/cop/style/first_method_argument_line_break.rb
rubocop-0.43.0 lib/rubocop/cop/style/first_method_argument_line_break.rb
rubocop-0.42.0 lib/rubocop/cop/style/first_method_argument_line_break.rb
rubocop-0.41.2 lib/rubocop/cop/style/first_method_argument_line_break.rb
rubocop-0.41.1 lib/rubocop/cop/style/first_method_argument_line_break.rb
rubocop-0.41.0 lib/rubocop/cop/style/first_method_argument_line_break.rb
rubocop-0.40.0 lib/rubocop/cop/style/first_method_argument_line_break.rb
rubocop-0.39.0 lib/rubocop/cop/style/first_method_argument_line_break.rb
rubocop-0.38.0 lib/rubocop/cop/style/first_method_argument_line_break.rb
rubocop-0.37.2 lib/rubocop/cop/style/first_method_argument_line_break.rb
rubocop-0.37.1 lib/rubocop/cop/style/first_method_argument_line_break.rb
rubocop-0.37.0 lib/rubocop/cop/style/first_method_argument_line_break.rb
rubocop-0.36.0 lib/rubocop/cop/style/first_method_argument_line_break.rb