Sha256: 85f521ad79fdc57221dcd51c04815bf19f08b85c6c353576bbad259a8e2aeeb9

Contents?: true

Size: 926 Bytes

Versions: 59

Compression:

Stored size: 926 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Lint
      # This cop looks for uses of flip-flop operator
      # based on the Ruby Style Guide.
      #
      # Here is the history of flip-flops in Ruby.
      # flip-flop operator is deprecated in Ruby 2.6.0 and
      # the deprecation has been reverted by Ruby 2.7.0 and
      # backported to Ruby 2.6.
      # See: https://bugs.ruby-lang.org/issues/5400
      #
      # @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 < Base
        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

59 entries across 59 versions & 6 rubygems

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