Sha256: 0b8d41ad74b36f943960bc7062d1e6203e0442947882687d617c3604852f52d7

Contents?: true

Size: 1.52 KB

Versions: 19

Compression:

Stored size: 1.52 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop checks uses of the `then` keyword
      # in multi-line when statements.
      #
      # @example
      #   # bad
      #   case foo
      #   when bar then
      #   end
      #
      #   # good
      #   case foo
      #   when bar
      #   end
      #
      #   # good
      #   case foo
      #   when bar then do_something
      #   end
      #
      #   # good
      #   case foo
      #   when bar then do_something(arg1,
      #                              arg2)
      #   end
      #
      class MultilineWhenThen < Base
        include RangeHelp
        extend AutoCorrector

        MSG = 'Do not use `then` for multiline `when` statement.'

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

          range = node.loc.begin
          add_offense(range) do |corrector|
            corrector.remove(
              range_with_surrounding_space(range: range, side: :left, newlines: false)
            )
          end
        end

        private

        # Requires `then` for write `when` and its body on the same line.
        def require_then?(when_node)
          unless when_node.conditions.first.first_line == when_node.conditions.last.last_line
            return true
          end
          return false unless when_node.body

          same_line?(when_node, when_node.body)
        end

        def accept_node_type?(node)
          node&.array_type? || node&.hash_type?
        end
      end
    end
  end
end

Version data entries

19 entries across 19 versions & 4 rubygems

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