Sha256: 1c737d8f8ee1b563139b6ec3c11840cd17991241201f03a33afd42905cc2336a
Contents?: true
Size: 1.26 KB
Versions: 4
Compression:
Stored size: 1.26 KB
Contents
# encoding: utf-8 module RuboCop module Cop module Style # This cop checks for RuntimeError as the argument of raise/fail. # # Currently it checks for code like this: # # @example # # raise RuntimeError, 'message' class RedundantException < Cop MSG = 'Redundant `RuntimeError` argument can be removed.' TARGET_NODE = s(:const, nil, :RuntimeError) def on_send(node) return unless command?(:raise, node) || command?(:fail, node) _receiver, _selector, *args = *node return unless args.size == 2 first_arg, = *args add_offense(first_arg, :expression) if first_arg == TARGET_NODE end # switch `raise RuntimeError, 'message'` to `raise 'message'` def autocorrect(node) @corrections << lambda do |corrector| start_range = node.loc.expression.begin no_comma = range_with_surrounding_comma(node.loc.expression.end, :right) comma_range = start_range.join(no_comma) final_range = range_with_surrounding_space(comma_range, :right) corrector.replace(final_range, '') end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems