Sha256: ca966c77bf9c4d69175aad56e64e7ce6d9d26a8c4f3c4a0b8a0d3d4fd5b5dd9f

Contents?: true

Size: 1.33 KB

Versions: 2

Compression:

Stored size: 1.33 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Layout
      # This hint checks for conditions that are not on the same line as
      # if/while/until.
      #
      # @example
      #
      #   # bad
      #
      #   if
      #     some_condition
      #     do_something
      #   end
      #
      # @example
      #
      #   # good
      #
      #   if some_condition
      #     do_something
      #   end
      class ConditionPosition < Cop
        include RangeHelp

        MSG = 'Place the condition on the same line as `%<keyword>s`.'

        def on_if(node)
          return if node.ternary?

          check(node)
        end

        def on_while(node)
          check(node)
        end
        alias on_until on_while

        def autocorrect(node)
          lambda do |corrector|
            range = range_by_whole_lines(
              node.source_range, include_final_newline: true
            )

            corrector.insert_after(node.parent.loc.keyword, " #{node.source}")
            corrector.remove(range)
          end
        end

        private

        def check(node)
          return if node.modifier_form? || node.single_line_condition?

          add_offense(node.condition)
        end

        def message(node)
          format(MSG, keyword: node.parent.keyword)
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rbhint-0.87.1.rc1 lib/rubocop/cop/layout/condition_position.rb
rbhint-0.85.1.rc2 lib/rubocop/cop/layout/condition_position.rb