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
harbr-0.1.39 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/trailing_body_on_class.rb
harbr-0.1.38 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/trailing_body_on_class.rb
harbr-0.1.37 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/trailing_body_on_class.rb
getargv-0.3.3-universal-darwin vendor/bundle/ruby/3.3.0/gems/rubocop-1.59.0/lib/rubocop/cop/style/trailing_body_on_class.rb
rubocop-1.59.0 lib/rubocop/cop/style/trailing_body_on_class.rb
study_line-0.1.6 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/trailing_body_on_class.rb
study_line-0.1.5 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/trailing_body_on_class.rb
study_line-0.1.4 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/trailing_body_on_class.rb
study_line-0.1.3 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/trailing_body_on_class.rb
study_line-0.1.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/trailing_body_on_class.rb
study_line-0.1.1 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/trailing_body_on_class.rb
rubocop-1.58.0 lib/rubocop/cop/style/trailing_body_on_class.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.52.1/lib/rubocop/cop/style/trailing_body_on_class.rb
rubocop-1.57.2 lib/rubocop/cop/style/trailing_body_on_class.rb
rubocop-1.57.1 lib/rubocop/cop/style/trailing_body_on_class.rb
rubocop-1.57.0 lib/rubocop/cop/style/trailing_body_on_class.rb
rubocop-1.56.4 lib/rubocop/cop/style/trailing_body_on_class.rb
rubocop-1.56.3 lib/rubocop/cop/style/trailing_body_on_class.rb
rubocop-1.56.2 lib/rubocop/cop/style/trailing_body_on_class.rb
synctera_ruby_sdk-1.1.3 vendor/bundle/ruby/3.2.0/gems/rubocop-1.56.0/lib/rubocop/cop/style/trailing_body_on_class.rb