Sha256: 52134c45f32ea3ddda6c8a3cb8b014c33cd8d6994a5c309a1cc84595442feb3d

Contents?: true

Size: 875 Bytes

Versions: 186

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

186 entries across 179 versions & 17 rubygems

Version Path
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
harbr-2.8.1 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/when_then.rb
rubocop-1.63.1 lib/rubocop/cop/style/when_then.rb
rubocop-1.63.0 lib/rubocop/cop/style/when_then.rb
bison-0.1.0 vendor/bundle/ruby/3.2.0/gems/rubocop-1.62.1/lib/rubocop/cop/style/when_then.rb
rubocop-1.62.1 lib/rubocop/cop/style/when_then.rb