Sha256: 0edf409bfef2ccff4f226ddb555c2e15aa5cab6184081524513657786b2c9b74
Contents?: true
Size: 824 Bytes
Versions: 1
Compression:
Stored size: 824 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop # Common functionality for cops checking single/double quotes. module StringLiteralsHelp private def wrong_quotes?(src_or_node) src = src_or_node.is_a?(RuboCop::AST::Node) ? src_or_node.source : src_or_node return false if src.start_with?('%', '?') if style == :single_quotes !double_quotes_required?(src) else !/" | \\[^'\\] | \#[@{$]/x.match?(src) end end def preferred_string_literal enforce_double_quotes? ? '""' : "''" end def enforce_double_quotes? string_literals_config['EnforcedStyle'] == 'double_quotes' end def string_literals_config config.for_enabled_cop('Style/StringLiterals') end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rubocop-1.70.0 | lib/rubocop/cop/mixin/string_literals_help.rb |