Sha256: 3b1b0b80d7292fe019c047c764dba2d337977ef6b45b1569d8efc303839d03e4
Contents?: true
Size: 883 Bytes
Versions: 2
Compression:
Stored size: 883 Bytes
Contents
# encoding: utf-8 module Rubocop module Cop module Style # This cop checks for comparison of something with nil using ==. # # @example # # # bad # if x == nil # # # good # if x.nil? class NilComparison < Cop MSG = 'Prefer the use of the `nil?` predicate.' OPS = [:==, :===] NIL_NODE = s(:nil) def on_send(node) _receiver, method, args = *node if OPS.include?(method) add_offense(node, :selector) if args == NIL_NODE end end private def autocorrect(node) @corrections << lambda do |corrector| expr = node.loc.expression new_code = expr.source.sub(/\s*={2,3}\s*nil/, '.nil?') corrector.replace(expr, new_code) end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rubocop-0.21.0 | lib/rubocop/cop/style/nil_comparison.rb |
rubocop-0.20.1 | lib/rubocop/cop/style/nil_comparison.rb |