Sha256: 27ba6cefca8674be2b0b51139a56b58ab83b35c64fd58f8a6a1da5a03865adb8
Contents?: true
Size: 760 Bytes
Versions: 6819
Compression:
Stored size: 760 Bytes
Contents
# 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'.freeze 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
Version data entries
6,819 entries across 6,813 versions & 25 rubygems