Sha256: 9f1c502f5c9f60578b235af9a4b69f8346b1e1e47e09da0cc5be8ba33d53befa
Contents?: true
Size: 1.17 KB
Versions: 60
Compression:
Stored size: 1.17 KB
Contents
# frozen_string_literal: true module RuboCop module Cop module Layout # This cop checks if empty lines around the bodies of modules match # the configuration. # # @example EnforcedStyle: empty_lines # # good # # module Foo # # def bar # # ... # end # # end # # @example EnforcedStyle: empty_lines_except_namespace # # good # # module Foo # module Bar # # # ... # # end # end # # @example EnforcedStyle: empty_lines_special # # good # module Foo # # def bar; end # # end # # @example EnforcedStyle: no_empty_lines (default) # # good # # module Foo # def bar # # ... # end # end class EmptyLinesAroundModuleBody < Cop include EmptyLinesAroundBody KIND = 'module' def on_module(node) check(node, node.body) end def autocorrect(node) EmptyLineCorrector.correct(node) end end end end end
Version data entries
60 entries across 41 versions & 5 rubygems