Sha256: bc226688b28526656196ae95a1be60328cc6eed1e834ca6558a66b60f261600e
Contents?: true
Size: 606 Bytes
Versions: 2
Compression:
Stored size: 606 Bytes
Contents
# encoding: utf-8 module Rubocop module Cop module Style # This cop looks for *unless* expressions with *else* clauses. class UnlessElse < Cop MSG = 'Never use unless with else. Rewrite these with the ' \ 'positive case first.' def on_if(node) loc = node.loc # discard ternary ops and modifier if/unless nodes return unless loc.respond_to?(:keyword) && loc.respond_to?(:else) if loc.keyword.is?('unless') && loc.else add_offense(node, :expression) 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/unless_else.rb |
rubocop-0.19.0 | lib/rubocop/cop/style/unless_else.rb |