Sha256: d24448cfca599d75a60df18a36bac338f4faa1146e24f36162762a424da6aaaf
Contents?: true
Size: 1.12 KB
Versions: 4
Compression:
Stored size: 1.12 KB
Contents
# encoding: utf-8 module RuboCop module Cop module Lint # This cop checks for assignments in the conditions of # if/while/until. class AssignmentInCondition < Cop include SafeAssignment MSG = 'Assignment in condition - you probably meant to use `==`.' def on_if(node) check(node) end def on_while(node) check(node) end def on_until(node) check(node) end private def check(node) condition, = *node # assignments inside blocks are not what we're looking for return if condition.type == :block on_node([:begin, *EQUALS_ASGN_NODES], condition) do |asgn_node| # skip safe assignment nodes if safe assignment is allowed return if safe_assignment_allowed? && safe_assignment?(asgn_node) # assignment nodes from shorthand ops like ||= don't have operator if asgn_node.type != :begin && asgn_node.loc.operator add_offense(asgn_node, :operator) end end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems