Sha256: 308c7d378eff9a029e699de5841d6b029de87f1bf6404496d84ec7481fa47ecb
Contents?: true
Size: 793 Bytes
Versions: 6790
Compression:
Stored size: 793 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop # Some common code shared between `NegatedIf` and # `NegatedWhile` cops. module NegativeConditional extend NodePattern::Macros MSG = 'Favor `%<inverse>s` over `%<current>s` for ' \ 'negative conditions.'.freeze private def_node_matcher :single_negative?, '(send !(send _ :!) :!)' def_node_matcher :empty_condition?, '(begin)' def check_negative_conditional(node) condition = node.condition return if empty_condition?(condition) condition = condition.children.last while condition.begin_type? return unless single_negative?(condition) return if node.if_type? && node.else? add_offense(node) end end end end
Version data entries
6,790 entries across 6,784 versions & 25 rubygems