# frozen_string_literal: true module RuboCop module Cop module Layout # This cop checks if empty lines exist around the bodies of methods. # # @example # # # good # # def foo # # ... # end # # # bad # # def bar # # # ... # # end class EmptyLinesAroundMethodBody < Cop include EmptyLinesAroundBody KIND = 'method' def on_def(node) check(node, node.body) end alias on_defs on_def def autocorrect(node) EmptyLineCorrector.correct(node) end private def style :no_empty_lines end end end end end