Skip to content

Files

Latest commit

 

History

History
24 lines (15 loc) · 330 Bytes

Lint-LiteralInInterpolation.md

File metadata and controls

24 lines (15 loc) · 330 Bytes

Pattern: Literal in interpolation

Issue: -

Description

This rule checks for interpolated literals.

Examples

# bad

"result is #{10}"
# good

"result is 10"

Further Reading