Sha256: 0df7ac716cc8b8000852def1fd72ad9fab86edd34f15f312df583ba2e3c8dfa7
Contents?: true
Size: 1.25 KB
Versions: 7
Compression:
Stored size: 1.25 KB
Contents
# encoding: utf-8 # frozen_string_literal: true module RuboCop module Cop module Style # Checks for uses of while with a negated condition. class NegatedWhile < Cop include NegativeConditional MSG = 'Favor `%s` over `%s` for negative conditions.'.freeze def on_while(node) check_negative_conditional(node) end def on_until(node) check_negative_conditional(node) end def message(node) if node.type == :while format(MSG, 'until', 'while') else format(MSG, 'while', 'until') end end private def autocorrect(node) lambda do |corrector| condition, _body, _rest = *node # Look inside parentheses around the condition, if any. condition, = *condition while condition.type == :begin # Unwrap the negated portion of the condition (a send node). pos_condition, _method, = *condition corrector.replace( node.loc.keyword, node.type == :while ? 'until' : 'while' ) corrector.replace(condition.source_range, pos_condition.source) end end end end end end
Version data entries
7 entries across 7 versions & 2 rubygems