Sha256: 9eb4698b482249736ed69abb2af5d03b6f95ea3d8e04786a9133dd59151b0865
Contents?: true
Size: 769 Bytes
Versions: 6493
Compression:
Stored size: 769 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module Layout # This cop 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
6,493 entries across 6,487 versions & 24 rubygems