Sha256: 7b9973bfa957f93658351fef2b0b3a164c76150e09b1f6c8f08e0300f88f653e

Contents?: true

Size: 442 Bytes

Versions: 15

Compression:

Stored size: 442 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop checks for uses of the case equality operator(===).
      class CaseEquality < Cop
        MSG = 'Avoid the use of the case equality operator `===`.'.freeze

        def_node_matcher :case_equality?, '(send _ :=== _)'

        def on_send(node)
          case_equality?(node) { add_offense(node, :selector) }
        end
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 2 rubygems

Version Path
dirwatch-0.0.9 vendor/bundle/ruby/2.5.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/case_equality.rb
dirwatch-0.0.8 vendor/bundle/ruby/2.5.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/case_equality.rb
dirwatch-0.0.6 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/case_equality.rb
dirwatch-0.0.5 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/case_equality.rb
dirwatch-0.0.4 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/case_equality.rb
dirwatch-0.0.3 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/case_equality.rb
dirwatch-0.0.2 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/case_equality.rb
rubocop-0.50.0 lib/rubocop/cop/style/case_equality.rb
rubocop-0.49.1 lib/rubocop/cop/style/case_equality.rb
rubocop-0.49.0 lib/rubocop/cop/style/case_equality.rb
rubocop-0.48.1 lib/rubocop/cop/style/case_equality.rb
rubocop-0.48.0 lib/rubocop/cop/style/case_equality.rb
rubocop-0.47.1 lib/rubocop/cop/style/case_equality.rb
rubocop-0.47.0 lib/rubocop/cop/style/case_equality.rb
rubocop-0.46.0 lib/rubocop/cop/style/case_equality.rb