Sha256: 61e44ad3ae9589f620f24a2dfcf7795abb5c8f569f9c812d7c30991eaa308ceb

Contents?: true

Size: 1.04 KB

Versions: 7

Compression:

Stored size: 1.04 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # If the `else` branch of a conditional consists solely of an `if` node,
      # it can be combined with the `else` to become an `elsif`.
      # This helps to keep the nesting level from getting too deep.
      #
      # @example
      #   @good
      #   if condition_a
      #     action_a
      #   elsif condition_b
      #     action_b
      #   else
      #     action_c
      #   end
      #
      #   @bad
      #   if condition_a
      #     action_a
      #   else
      #     if condition_b
      #       action_b
      #     else
      #       action_c
      #     end
      #   end
      class IfInsideElse < Cop
        MSG = 'Convert `if` nested inside `else` to `elsif`.'.freeze

        def on_if(node)
          return if node.ternary? || node.unless?

          else_branch = node.else_branch

          return unless else_branch && else_branch.if_type? && else_branch.if?

          add_offense(else_branch, :keyword)
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rubocop-0.50.0 lib/rubocop/cop/style/if_inside_else.rb
rubocop-0.49.1 lib/rubocop/cop/style/if_inside_else.rb
rubocop-0.49.0 lib/rubocop/cop/style/if_inside_else.rb
rubocop-0.48.1 lib/rubocop/cop/style/if_inside_else.rb
rubocop-0.48.0 lib/rubocop/cop/style/if_inside_else.rb
rubocop-0.47.1 lib/rubocop/cop/style/if_inside_else.rb
rubocop-0.47.0 lib/rubocop/cop/style/if_inside_else.rb