Sha256: 9ea6bdca469a25f14fec6ee922e3ab59729f79ff42f63b0cf2b54a825067bba7
Contents?: true
Size: 655 Bytes
Versions: 60
Compression:
Stored size: 655 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module Lint # This cop checks for comparison of something with itself. # # @example # # # bad # # x.top >= x.top class UselessComparison < Cop MSG = 'Comparison of something with itself detected.' OPS = %w[== === != < > <= >= <=>].freeze def_node_matcher :useless_comparison?, "(send $_match {:#{OPS.join(' :')}} $_match)" def on_send(node) return unless useless_comparison?(node) add_offense(node, location: :selector) end end end end end
Version data entries
60 entries across 41 versions & 5 rubygems