Sha256: 0f7fc160371d318a144d4e4a455d44c6e5b7942bcf9f46f8cf31b9143912b1a6
Contents?: true
Size: 770 Bytes
Versions: 15
Compression:
Stored size: 770 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module Layout # This cops checks if empty lines around the bodies of blocks match # the configuration. # # @example EnforcedStyle: empty_lines # # good # # foo do |bar| # # # ... # # end # # @example EnforcedStyle: no_empty_lines (default) # # good # # foo do |bar| # # ... # end class EmptyLinesAroundBlockBody < Cop include EmptyLinesAroundBody KIND = 'block'.freeze def on_block(node) check(node, node.body) end def autocorrect(node) EmptyLineCorrector.correct(node) end end end end end
Version data entries
15 entries across 15 versions & 2 rubygems