Sha256: 3de19e63ad891619e2ca590dacee0501ef4d2bbc0f80d192e11f1488735b480f

Contents?: true

Size: 710 Bytes

Versions: 54

Compression:

Stored size: 710 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.'

        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

54 entries across 35 versions & 5 rubygems

Version Path
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.79.0/lib/rubocop/cop/style/nested_ternary_operator.rb
files.com-1.0.1 vendor/bundle/ruby/2.5.0/gems/rubocop-0.85.1/lib/rubocop/cop/style/nested_ternary_operator.rb
rbhint-0.85.1.rc1 lib/rubocop/cop/style/nested_ternary_operator.rb
rubocop-0.85.1 lib/rubocop/cop/style/nested_ternary_operator.rb
rbhint-0.8.5.rc1 lib/rubocop/cop/style/nested_ternary_operator.rb
rubocop-0.85.0 lib/rubocop/cop/style/nested_ternary_operator.rb
rubocop-0.84.0 lib/rubocop/cop/style/nested_ternary_operator.rb
rubocop-0.83.0 lib/rubocop/cop/style/nested_ternary_operator.rb
rubocop-0.82.0 lib/rubocop/cop/style/nested_ternary_operator.rb
rubocop-0.81.0 lib/rubocop/cop/style/nested_ternary_operator.rb
rubocop-0.80.1 lib/rubocop/cop/style/nested_ternary_operator.rb
rubocop-0.80.0 lib/rubocop/cop/style/nested_ternary_operator.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/rubocop-0.79.0/lib/rubocop/cop/style/nested_ternary_operator.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.79.0/lib/rubocop/cop/style/nested_ternary_operator.rb
rubocop-0.79.0 lib/rubocop/cop/style/nested_ternary_operator.rb
rubocop-0.78.0 lib/rubocop/cop/style/nested_ternary_operator.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/nested_ternary_operator.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/rubocop-0.74.0/lib/rubocop/cop/style/nested_ternary_operator.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/rubocop-0.77.0/lib/rubocop/cop/style/nested_ternary_operator.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/rubocop-0.75.0/lib/rubocop/cop/style/nested_ternary_operator.rb