Sha256: 94b52169c03ea78919bef1fbf27b3aedba0113855f6e5942fcf446cf2300ef7e

Contents?: true

Size: 1.2 KB

Versions: 7

Compression:

Stored size: 1.2 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # Checks for uses of the `then` keyword in multi-line if statements.
      #
      # @example
      #   # bad
      #   # This is considered bad practice.
      #   if cond then
      #   end
      #
      #   # good
      #   # If statements can contain `then` on the same line.
      #   if cond then a
      #   elsif cond then b
      #   end
      class MultilineIfThen < Cop
        include OnNormalIfUnless
        include RangeHelp

        NON_MODIFIER_THEN = /then\s*(#.*)?$/.freeze

        MSG = 'Do not use `then` for multi-line `%<keyword>s`.'

        def on_normal_if_unless(node)
          return unless non_modifier_then?(node)

          add_offense(node, location: :begin,
                            message: format(MSG, keyword: node.keyword))
        end

        def autocorrect(node)
          lambda do |corrector|
            corrector.remove(
              range_with_surrounding_space(range: node.loc.begin, side: :left)
            )
          end
        end

        private

        def non_modifier_then?(node)
          NON_MODIFIER_THEN.match?(node.loc.begin&.source_line)
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
rubocop-0.89.0 lib/rubocop/cop/style/multiline_if_then.rb
rubocop-0.88.0 lib/rubocop/cop/style/multiline_if_then.rb
rbhint-0.87.1.rc1 lib/rubocop/cop/style/multiline_if_then.rb
rubocop-0.87.1 lib/rubocop/cop/style/multiline_if_then.rb
rubocop-0.87.0 lib/rubocop/cop/style/multiline_if_then.rb
rubocop-0.86.0 lib/rubocop/cop/style/multiline_if_then.rb
rbhint-0.85.1.rc2 lib/rubocop/cop/style/multiline_if_then.rb