Sha256: 748f7b0f329f5d301509d7c97362a367de96e72d3bde9574ce12e663048d8252

Contents?: true

Size: 797 Bytes

Versions: 6836

Compression:

Stored size: 797 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 < Cop
        MSG = 'Do not use `when x;`. Use `when x then` instead.'.freeze

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

          add_offense(node, location: :begin)
        end

        def autocorrect(node)
          lambda do |corrector|
            corrector.replace(node.loc.begin, ' then')
          end
        end
      end
    end
  end
end

Version data entries

6,836 entries across 6,830 versions & 26 rubygems

Version Path
talon_one-2.0.0 vendor/bundle/ruby/2.7.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/when_then.rb
dadapush_client-1.0.1 vendor/bundle/ruby/2.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/when_then.rb
rubocop-0.68.1 lib/rubocop/cop/style/when_then.rb
rubocop-0.68.0 lib/rubocop/cop/style/when_then.rb
rubocop-0.67.2 lib/rubocop/cop/style/when_then.rb
rubocop-0.67.1 lib/rubocop/cop/style/when_then.rb
rubocop-0.67.0 lib/rubocop/cop/style/when_then.rb
rubocop-0.66.0 lib/rubocop/cop/style/when_then.rb
rubocop-0.65.0 lib/rubocop/cop/style/when_then.rb
rubocop-0.64.0 lib/rubocop/cop/style/when_then.rb
rubocop-0.63.1 lib/rubocop/cop/style/when_then.rb
rubocop-0.63.0 lib/rubocop/cop/style/when_then.rb
rubocop-0.62.0 lib/rubocop/cop/style/when_then.rb
rubocop-0.61.1 lib/rubocop/cop/style/when_then.rb
rubocop-0.61.0 lib/rubocop/cop/style/when_then.rb
config_gems_initialization_aim-0.1.4 vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/cop/style/when_then.rb
config_gems_initialization_aim-0.1.4 vendor/bundle/ruby/2.5.0/gems/config_gems_initialization_aim-0.1.1/vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/cop/style/when_then.rb
config_gems_initialization_aim-0.1.3 vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/cop/style/when_then.rb
config_gems_initialization_aim-0.1.3 vendor/bundle/ruby/2.5.0/gems/config_gems_initialization_aim-0.1.1/vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/cop/style/when_then.rb
rubocop-0.60.0 lib/rubocop/cop/style/when_then.rb