Sha256: 8e1992293a4b1fa2e5c7947ffcd61994784f3d66ce48e64c6bade5bf2b412967

Contents?: true

Size: 980 Bytes

Versions: 146

Compression:

Stored size: 980 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # Checks for trailing code after the class definition.
      #
      # @example
      #   # bad
      #   class Foo; def foo; end
      #   end
      #
      #   # good
      #   class Foo
      #     def foo; end
      #   end
      #
      class TrailingBodyOnClass < Base
        include Alignment
        include TrailingBody
        extend AutoCorrector

        MSG = 'Place the first line of class body on its own line.'

        def on_class(node)
          return unless trailing_body?(node)

          add_offense(first_part_of(node.to_a.last)) do |corrector|
            LineBreakCorrector.correct_trailing_body(
              configured_width: configured_indentation_width,
              corrector: corrector,
              node: node,
              processed_source: processed_source
            )
          end
        end
        alias on_sclass on_class
      end
    end
  end
end

Version data entries

146 entries across 145 versions & 14 rubygems

Version Path
rubocop-1.52.0 lib/rubocop/cop/style/trailing_body_on_class.rb
rubocop-1.51.0 lib/rubocop/cop/style/trailing_body_on_class.rb
fluent-plugin-google-cloud-logging-on-prem-0.1.0 vendor/ruby/3.1.0/gems/rubocop-1.50.2/lib/rubocop/cop/style/trailing_body_on_class.rb
rubocop-1.50.2 lib/rubocop/cop/style/trailing_body_on_class.rb
rubocop-1.50.1 lib/rubocop/cop/style/trailing_body_on_class.rb
rubocop-1.50.0 lib/rubocop/cop/style/trailing_body_on_class.rb