Sha256: d64074ed03c13e8f95dd485dad63e707e576ddad647811a7256830eb7c9b21b2

Contents?: true

Size: 884 Bytes

Versions: 34

Compression:

Stored size: 884 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop 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

34 entries across 34 versions & 5 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/style/when_then.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/style/when_then.rb
rubocop-1.29.1 lib/rubocop/cop/style/when_then.rb
rubocop-1.29.0 lib/rubocop/cop/style/when_then.rb
rubocop-1.28.2 lib/rubocop/cop/style/when_then.rb
rubocop-1.28.1 lib/rubocop/cop/style/when_then.rb
rubocop-1.28.0 lib/rubocop/cop/style/when_then.rb
rubocop-1.27.0 lib/rubocop/cop/style/when_then.rb
rubocop-1.26.1 lib/rubocop/cop/style/when_then.rb
op_connect-0.1.2 vendor/bundle/ruby/3.1.0/gems/rubocop-1.26.0/lib/rubocop/cop/style/when_then.rb
rubocop-1.26.0 lib/rubocop/cop/style/when_then.rb
rubocop-1.25.1 lib/rubocop/cop/style/when_then.rb
rubocop-1.25.0 lib/rubocop/cop/style/when_then.rb
phillipug-foodie-0.1.0 .vendor/ruby/3.0.0/gems/rubocop-1.24.0/lib/rubocop/cop/style/when_then.rb
rubocop-1.24.1 lib/rubocop/cop/style/when_then.rb
rubocop-1.24.0 lib/rubocop/cop/style/when_then.rb
rubocop-1.23.0 lib/rubocop/cop/style/when_then.rb
rubocop-1.22.3 lib/rubocop/cop/style/when_then.rb
rubocop-1.22.2 lib/rubocop/cop/style/when_then.rb
rubocop-1.22.1 lib/rubocop/cop/style/when_then.rb