Sha256: be2a5a194cdd74af052107c4a6f2c971612a71beb165915a88fdd1017697bd14

Contents?: true

Size: 1.48 KB

Versions: 183

Compression:

Stored size: 1.48 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # Checks for `in;` uses in `case` expressions.
      #
      # @example
      #   # bad
      #   case expression
      #   in pattern_a; foo
      #   in pattern_b; bar
      #   end
      #
      #   # good
      #   case expression
      #   in pattern_a then foo
      #   in pattern_b then bar
      #   end
      #
      class InPatternThen < Base
        extend AutoCorrector
        extend TargetRubyVersion

        minimum_target_ruby_version 2.7

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

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

          pattern = node.pattern
          pattern_source = if pattern.match_alt_type?
                             alternative_pattern_source(pattern)
                           else
                             pattern.source
                           end

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

        private

        def alternative_pattern_source(pattern)
          return pattern.children.map(&:source) unless pattern.children.first.match_alt_type?

          pattern_sources = alternative_pattern_source(pattern.children.first)

          (pattern_sources << pattern.children[1].source).join(' | ')
        end
      end
    end
  end
end

Version data entries

183 entries across 176 versions & 18 rubygems

Version Path
harbr-0.1.38 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/in_pattern_then.rb
harbr-0.1.37 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/in_pattern_then.rb
getargv-0.3.3-universal-darwin vendor/bundle/ruby/3.3.0/gems/rubocop-1.59.0/lib/rubocop/cop/style/in_pattern_then.rb
rubocop-1.59.0 lib/rubocop/cop/style/in_pattern_then.rb
study_line-0.1.6 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/in_pattern_then.rb
study_line-0.1.5 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/in_pattern_then.rb
study_line-0.1.4 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/in_pattern_then.rb
study_line-0.1.3 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/in_pattern_then.rb
study_line-0.1.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/in_pattern_then.rb
study_line-0.1.1 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/in_pattern_then.rb
rubocop-1.58.0 lib/rubocop/cop/style/in_pattern_then.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.31.2/lib/rubocop/cop/style/in_pattern_then.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.52.1/lib/rubocop/cop/style/in_pattern_then.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.36.0/lib/rubocop/cop/style/in_pattern_then.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.35.1/lib/rubocop/cop/style/in_pattern_then.rb
rubocop-1.57.2 lib/rubocop/cop/style/in_pattern_then.rb
rubocop-1.57.1 lib/rubocop/cop/style/in_pattern_then.rb
rubocop-1.57.0 lib/rubocop/cop/style/in_pattern_then.rb
rubocop-1.56.4 lib/rubocop/cop/style/in_pattern_then.rb
rubocop-1.56.3 lib/rubocop/cop/style/in_pattern_then.rb