Sha256: 31709db3b2b2ad9512656c73ae48358561bb0f56a93abae7dcd8a7f2c5e20137
Contents?: true
Size: 991 Bytes
Versions: 6595
Compression:
Stored size: 991 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop # Classes that include this module just implement functions to determine # what is an offense and how to do auto-correction. They get help with # adding offenses for the faulty string nodes, and with filtering out # nodes. module StringHelp def on_str(node) # Constants like __FILE__ are handled as strings, # but don't respond to begin. return unless node.loc.respond_to?(:begin) && node.loc.begin return if part_of_ignored_node?(node) if offense?(node) add_offense(node) { opposite_style_detected } else correct_style_detected end end def on_regexp(node) ignore_node(node) end private def inside_interpolation?(node) # A :begin node inside a :dstr node is an interpolation. node.ancestors.drop_while { |a| !a.begin_type? }.any?(&:dstr_type?) end end end end
Version data entries
6,595 entries across 6,569 versions & 30 rubygems