Sha256: 99fa5c421062abce3e0b2edfe9458cc547e3d963cdf4c26f357b53f66e0f5d08

Contents?: true

Size: 684 Bytes

Versions: 60

Compression:

Stored size: 684 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Lint
      # This cop looks for uses of flip-flop operator.
      # flip-flop operator is deprecated since Ruby 2.6.0.
      #
      # @example
      #   # bad
      #   (1..20).each do |x|
      #     puts x if (x == 5) .. (x == 10)
      #   end
      #
      #   # good
      #   (1..20).each do |x|
      #     puts x if (x >= 5) && (x <= 10)
      #   end
      class FlipFlop < Cop
        MSG = 'Avoid the use of flip-flop operators.'

        def on_iflipflop(node)
          add_offense(node)
        end

        def on_eflipflop(node)
          add_offense(node)
        end
      end
    end
  end
end

Version data entries

60 entries across 41 versions & 5 rubygems

Version Path
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.79.0/lib/rubocop/cop/lint/flip_flop.rb
rubocop-0.88.0 lib/rubocop/cop/lint/flip_flop.rb
rbhint-0.87.1.rc1 lib/rubocop/cop/lint/flip_flop.rb
rubocop-0.87.1 lib/rubocop/cop/lint/flip_flop.rb
rubocop-0.87.0 lib/rubocop/cop/lint/flip_flop.rb
rubocop-0.86.0 lib/rubocop/cop/lint/flip_flop.rb
files.com-1.0.1 vendor/bundle/ruby/2.5.0/gems/rubocop-0.85.1/lib/rubocop/cop/lint/flip_flop.rb
rbhint-0.85.1.rc2 lib/rubocop/cop/lint/flip_flop.rb
rbhint-0.85.1.rc1 lib/rubocop/cop/lint/flip_flop.rb
rubocop-0.85.1 lib/rubocop/cop/lint/flip_flop.rb
rbhint-0.8.5.rc1 lib/rubocop/cop/lint/flip_flop.rb
rubocop-0.85.0 lib/rubocop/cop/lint/flip_flop.rb
rubocop-0.84.0 lib/rubocop/cop/lint/flip_flop.rb
rubocop-0.83.0 lib/rubocop/cop/lint/flip_flop.rb
rubocop-0.82.0 lib/rubocop/cop/lint/flip_flop.rb
rubocop-0.81.0 lib/rubocop/cop/lint/flip_flop.rb
rubocop-0.80.1 lib/rubocop/cop/lint/flip_flop.rb
rubocop-0.80.0 lib/rubocop/cop/lint/flip_flop.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/rubocop-0.79.0/lib/rubocop/cop/lint/flip_flop.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.79.0/lib/rubocop/cop/lint/flip_flop.rb