Sha256: 45aaa281865f52c16e0559b7470ab391dc201616894eff65342bdfaff138f4fd

Contents?: true

Size: 1.4 KB

Versions: 8

Compression:

Stored size: 1.4 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Layout
      # Checks whether the end statement of a do..end block
      # is on its own line.
      #
      # @example
      #   # bad
      #   blah do |i|
      #     foo(i) end
      #
      #   # good
      #   blah do |i|
      #     foo(i)
      #   end
      #
      #   # bad
      #   blah { |i|
      #     foo(i) }
      #
      #   # good
      #   blah { |i|
      #     foo(i)
      #   }
      class BlockEndNewline < Base
        include Alignment
        extend AutoCorrector

        MSG = 'Expression at %<line>d, %<column>d should be on its own line.'

        def on_block(node)
          return if node.single_line?

          # If the end is on its own line, there is no offense
          return if begins_its_line?(node.loc.end)

          add_offense(node.loc.end, message: message(node)) do |corrector|
            corrector.replace(delimiter_range(node), "\n#{node.loc.end.source}#{offset(node)}")
          end
        end

        private

        def message(node)
          format(MSG, line: node.loc.end.line, column: node.loc.end.column + 1)
        end

        def delimiter_range(node)
          Parser::Source::Range.new(
            node.loc.expression.source_buffer,
            node.children.compact.last.loc.expression.end_pos,
            node.loc.expression.end_pos
          )
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.31.2/lib/rubocop/cop/layout/block_end_newline.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.31.2/lib/rubocop/cop/layout/block_end_newline.rb
rubocop-1.32.0 lib/rubocop/cop/layout/block_end_newline.rb
rubocop-1.31.2 lib/rubocop/cop/layout/block_end_newline.rb
rubocop-1.31.1 lib/rubocop/cop/layout/block_end_newline.rb
rubocop-1.31.0 lib/rubocop/cop/layout/block_end_newline.rb
rubocop-1.30.1 lib/rubocop/cop/layout/block_end_newline.rb
rubocop-1.30.0 lib/rubocop/cop/layout/block_end_newline.rb