Sha256: e572d1426f6c3d998c353c498ed96bccd4b2c60295328bd5df5ef0982e6cecd2

Contents?: true

Size: 980 Bytes

Versions: 179

Compression:

Stored size: 980 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Lint
      # Checks for useless `else` in `begin..end` without `rescue`.
      #
      # NOTE: This syntax is no longer valid on Ruby 2.6 or higher.
      #
      # @example
      #
      #   # bad
      #
      #   begin
      #     do_something
      #   else
      #     do_something_else # This will never be run.
      #   end
      #
      # @example
      #
      #   # good
      #
      #   begin
      #     do_something
      #   rescue
      #     handle_errors
      #   else
      #     do_something_else
      #   end
      class UselessElseWithoutRescue < Base
        MSG = '`else` without `rescue` is useless.'

        def on_new_investigation
          processed_source.diagnostics.each do |diagnostic|
            next unless diagnostic.reason == :useless_else

            add_offense(diagnostic.location, severity: diagnostic.level)
          end
        end
      end
    end
  end
end

Version data entries

179 entries across 172 versions & 17 rubygems

Version Path
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/lint/useless_else_without_rescue.rb
rubocop-1.65.0 lib/rubocop/cop/lint/useless_else_without_rescue.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/lint/useless_else_without_rescue.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/lint/useless_else_without_rescue.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/lint/useless_else_without_rescue.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-1.64.1/lib/rubocop/cop/lint/useless_else_without_rescue.rb
rubocop-1.64.1 lib/rubocop/cop/lint/useless_else_without_rescue.rb
rubocop-1.63.4 lib/rubocop/cop/lint/useless_else_without_rescue.rb
rubocop-1.63.3 lib/rubocop/cop/lint/useless_else_without_rescue.rb
rubocop-1.63.2 lib/rubocop/cop/lint/useless_else_without_rescue.rb
harbr-2.8.1 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/useless_else_without_rescue.rb
rubocop-1.63.1 lib/rubocop/cop/lint/useless_else_without_rescue.rb
rubocop-1.63.0 lib/rubocop/cop/lint/useless_else_without_rescue.rb
bison-0.1.0 vendor/bundle/ruby/3.2.0/gems/rubocop-1.62.1/lib/rubocop/cop/lint/useless_else_without_rescue.rb
rubocop-1.62.1 lib/rubocop/cop/lint/useless_else_without_rescue.rb
rubocop-1.62.0 lib/rubocop/cop/lint/useless_else_without_rescue.rb
rubocop-1.61.0 lib/rubocop/cop/lint/useless_else_without_rescue.rb
mlh-rubocop-config-1.0.3 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.2/lib/rubocop/cop/lint/useless_else_without_rescue.rb
rubocop-1.60.2 lib/rubocop/cop/lint/useless_else_without_rescue.rb
study_line-0.2.7 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/useless_else_without_rescue.rb