Sha256: 6c711f9b87a434bd731970a932cb4981ca013fbe93dd4cadb9aa5aef9b9f9f5b
Contents?: true
Size: 717 Bytes
Versions: 6787
Compression:
Stored size: 717 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module Style # This cop checks for nested ternary op expressions. # # @example # # bad # a ? (b ? b1 : b2) : a2 # # # good # if a # b ? b1 : b2 # else # a2 # end class NestedTernaryOperator < Cop MSG = 'Ternary operators must not be nested. Prefer `if` or `else` ' \ 'constructs instead.'.freeze def on_if(node) return unless node.ternary? node.each_descendant(:if).select(&:ternary?).each do |nested_ternary| add_offense(nested_ternary) end end end end end end
Version data entries
6,787 entries across 6,781 versions & 25 rubygems