Pattern: Interpolation in single quoted string
Issue: -
This rule checks for interpolation in a single quoted string.
# bad
foo = 'something with #{interpolation} inside'
# good
foo = "something with #{interpolation} inside"
Pattern: Interpolation in single quoted string
Issue: -
This rule checks for interpolation in a single quoted string.
# bad
foo = 'something with #{interpolation} inside'
# good
foo = "something with #{interpolation} inside"