no-template-curly-in-string
Configuration
rslint.config.ts
Rule Details
Disallows template literal placeholder syntax (${expression}) inside regular strings. This is almost always a mistake where the developer intended to use a template literal (backtick-delimited string) but accidentally used single or double quotes instead, so the placeholder is treated as a literal string rather than being interpolated.
Examples of incorrect code for this rule:
Examples of correct code for this rule: