Sha256: 471c4cd54819048686b84fca71968e2af3c686ebee3cd6b40a4735ad84f5a838
Contents?: true
Size: 786 Bytes
Versions: 62
Compression:
Stored size: 786 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.' 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
62 entries across 43 versions & 5 rubygems