class RuboCop::Cop::Style::InfiniteLoop
def on_while(node)
def on_while(node) return unless node.condition.truthy_literal? add_offense(node, :keyword) end
def on_while(node) return unless node.condition.truthy_literal? add_offense(node, :keyword) end