Sha256: 44488bebfec21fb16d17819d8a675af5ace8caa2198c1b3c0de048655bf2a82b

Contents?: true

Size: 1.2 KB

Versions: 15

Compression:

Stored size: 1.2 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Layout
      # This cops 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'.freeze

        def on_module(node)
          _name, body = *node
          check(node, body)
        end

        def autocorrect(node)
          EmptyLineCorrector.correct(node)
        end
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 2 rubygems

Version Path
rubocop-0.59.2 lib/rubocop/cop/layout/empty_lines_around_module_body.rb
rubocop-0.59.1 lib/rubocop/cop/layout/empty_lines_around_module_body.rb
rubocop-0.59.0 lib/rubocop/cop/layout/empty_lines_around_module_body.rb
rubocop-0.58.2 lib/rubocop/cop/layout/empty_lines_around_module_body.rb
rubocop-0.58.1 lib/rubocop/cop/layout/empty_lines_around_module_body.rb
rubocop-0.58.0 lib/rubocop/cop/layout/empty_lines_around_module_body.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/rubocop-0.57.2/lib/rubocop/cop/layout/empty_lines_around_module_body.rb
rubocop-0.57.2 lib/rubocop/cop/layout/empty_lines_around_module_body.rb
rubocop-0.57.1 lib/rubocop/cop/layout/empty_lines_around_module_body.rb
rubocop-0.57.0 lib/rubocop/cop/layout/empty_lines_around_module_body.rb
rubocop-0.56.0 lib/rubocop/cop/layout/empty_lines_around_module_body.rb
rubocop-0.55.0 lib/rubocop/cop/layout/empty_lines_around_module_body.rb
rubocop-0.54.0 lib/rubocop/cop/layout/empty_lines_around_module_body.rb
rubocop-0.53.0 lib/rubocop/cop/layout/empty_lines_around_module_body.rb
rubocop-0.52.1 lib/rubocop/cop/layout/empty_lines_around_module_body.rb