Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 414 Bytes

Lint-InterpolationCheck.md

File metadata and controls

24 lines (15 loc) · 414 Bytes

Pattern: Interpolation in single quoted string

Issue: -

Description

This rule checks for interpolation in a single quoted string.

Examples

# bad

foo = 'something with #{interpolation} inside'
# good

foo = "something with #{interpolation} inside"

Further Reading