Sha256: 594ba8d91b671f798f80db36ebf48c628046973fcd9450bc2fabc7df120b19a7
Contents?: true
Size: 756 Bytes
Versions: 14
Compression:
Stored size: 756 Bytes
Contents
# encoding: utf-8 # frozen_string_literal: true module RuboCop module Cop module Style # Checks if uses of quotes match the configured preference. class StringLiteralsInInterpolation < Cop include ConfigurableEnforcedStyle include StringLiteralsHelp private def message(*) # single_quotes -> single-quoted kind = style.to_s.sub(/_(.*)s/, '-\1d') "Prefer #{kind} strings inside interpolations." end def offense?(node) # If it's not a string within an interpolation, then it's not an # offense for this cop. return false unless inside_interpolation?(node) wrong_quotes?(node) end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems