codeclimate/codeclimate-rubocop

View on GitHub
config/contents/style/flip_flop.md

Summary

Maintainability
Test Coverage
This cop looks for uses of flip flop operator

### 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