123456789_123456789_123456789_123456789_123456789_

Module: RuboCop::Cop::StringLiteralsHelp

Relationships & Source Files
Extension / Inclusion / Inheritance Descendants
Included In:
Defined in: lib/rubocop/cop/mixin/string_literals_help.rb

Overview

Common functionality for cops checking single/double quotes.

Instance Method Summary

Instance Method Details

#wrong_quotes?(src_or_node) ⇒ Boolean (private)

[ GitHub ]

  
# File 'lib/rubocop/cop/mixin/string_literals_help.rb', line 9

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