Sha256: 31ff671647a4c98e4053ae9a3cda8993aabf35287c608783ddcb7e5612505cff
Contents?: true
Size: 1.19 KB
Versions: 35
Compression:
Stored size: 1.19 KB
Contents
# frozen_string_literal: true module RuboCop module Cop module Layout # This cop ensures that each argument in a multi-line method call # starts on a separate line. # # @example # # # bad # foo(a, b, # c # ) # # # good # foo( # a, # b, # c # ) class MultilineMethodArgumentLineBreaks < Base include MultilineElementLineBreaks extend AutoCorrector MSG = 'Each argument in a multi-line method call must start ' \ 'on a separate line.' def on_send(node) return if node.method?(:[]=) 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. last_arg = args.last args = args[0...-1] + last_arg.children if last_arg&.hash_type? && !last_arg&.braces? check_line_breaks(node, args) end end end end end
Version data entries
35 entries across 35 versions & 3 rubygems