Sha256: 6cbc37a13862c60135f36c54a92ed62428ab3c868d0fc50f799bab5e5e53b4a4
Contents?: true
Size: 1.32 KB
Versions: 203
Compression:
Stored size: 1.32 KB
Contents
# frozen_string_literal: true module RuboCop module Cop module Style # Checks for trailing code after the method definition. # # NOTE: It always accepts endless method definitions that are basically on the same line. # # @example # # bad # def some_method; do_stuff # end # # def f(x); b = foo # b[c: x] # end # # # good # def some_method # do_stuff # end # # def f(x) # b = foo # b[c: x] # end # # def endless_method = do_stuff # class TrailingBodyOnMethodDefinition < Base include Alignment include TrailingBody extend AutoCorrector MSG = "Place the first line of a multi-line method definition's body on its own line." def on_def(node) return unless trailing_body?(node) return if node.endless? add_offense(first_part_of(node.body)) do |corrector| LineBreakCorrector.correct_trailing_body( configured_width: configured_indentation_width, corrector: corrector, node: node, processed_source: processed_source ) end end alias on_defs on_def end end end end
Version data entries
203 entries across 196 versions & 20 rubygems