Skip to content

Files

Latest commit

 

History

History
22 lines (13 loc) · 400 Bytes

no_interpolation_in_single_quotes.md

File metadata and controls

22 lines (13 loc) · 400 Bytes

Pattern: Interpolation in single quotes

Issue: -

Description

This rule prohibits string interpolation in a single quoted string.

Examples

# String interpolation in single quotes is not allowed:
foo = '#{bar}'


# Double quotes is OK of course
foo = "#{bar}"

Further Reading