Sha256: dafc1b7c863f7cd5936f5ccf8603f57f0598cdff9d0ef73fa25307f1b01071f4
Contents?: true
Size: 499 Bytes
Versions: 2
Compression:
Stored size: 499 Bytes
Contents
# encoding: utf-8 module Rubocop module Cop module Style # This cop checks for uses if the keyword *not* instead of !. class Not < Cop MSG = 'Use ! instead of not.' def on_send(node) _receiver, method_name, *args = *node # not does not take any arguments if args.empty? && method_name == :! && node.loc.selector.is?('not') add_offense(node, :selector) end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rubocop-0.19.1 | lib/rubocop/cop/style/not.rb |
rubocop-0.19.0 | lib/rubocop/cop/style/not.rb |