Sha256: 598f948cdd447827ac48acb16c14083a954e5449105f11812fe10689644a415b
Contents?: true
Size: 1.27 KB
Versions: 11
Compression:
Stored size: 1.27 KB
Contents
# 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
11 entries across 11 versions & 2 rubygems