Sha256: 52134c45f32ea3ddda6c8a3cb8b014c33cd8d6994a5c309a1cc84595442feb3d

Contents?: true

Size: 875 Bytes

Versions: 191

Compression:

Stored size: 875 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # Checks for `when;` uses in `case` expressions.
      #
      # @example
      #   # bad
      #   case foo
      #   when 1; 'baz'
      #   when 2; 'bar'
      #   end
      #
      #   # good
      #   case foo
      #   when 1 then 'baz'
      #   when 2 then 'bar'
      #   end
      class WhenThen < Base
        extend AutoCorrector

        MSG = 'Do not use `when %<expression>s;`. Use `when %<expression>s then` instead.'

        def on_when(node)
          return if node.multiline? || node.then? || !node.body

          message = format(MSG, expression: node.conditions.map(&:source).join(', '))

          add_offense(node.loc.begin, message: message) do |corrector|
            corrector.replace(node.loc.begin, ' then')
          end
        end
      end
    end
  end
end

Version data entries

191 entries across 184 versions & 18 rubygems

Version Path
rubocop-1.70.0 lib/rubocop/cop/style/when_then.rb
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/style/when_then.rb
rubocop-1.69.2 lib/rubocop/cop/style/when_then.rb
rubocop-1.69.1 lib/rubocop/cop/style/when_then.rb
rubocop-1.69.0 lib/rubocop/cop/style/when_then.rb
rubocop-1.68.0 lib/rubocop/cop/style/when_then.rb
rubocop-1.67.0 lib/rubocop/cop/style/when_then.rb
rubocop-1.66.1 lib/rubocop/cop/style/when_then.rb
rubocop-1.66.0 lib/rubocop/cop/style/when_then.rb
rubocop-1.65.1 lib/rubocop/cop/style/when_then.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/style/when_then.rb
rubocop-1.65.0 lib/rubocop/cop/style/when_then.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/style/when_then.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/style/when_then.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/style/when_then.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-1.64.1/lib/rubocop/cop/style/when_then.rb
rubocop-1.64.1 lib/rubocop/cop/style/when_then.rb
rubocop-1.63.4 lib/rubocop/cop/style/when_then.rb
rubocop-1.63.3 lib/rubocop/cop/style/when_then.rb
rubocop-1.63.2 lib/rubocop/cop/style/when_then.rb