ECMAScript 6 allows programmers to create strings containing variable or expressions using template literals, instead of string concatenation, by writing expressions like ${variable}
between two backtick quotes (`). It can be easy to use the wrong quotes when wanting to use template literals, by writing "${variable}"
, and end up with the literal value "${variable}"
instead of a string containing the value of the injected expressions.
This rule aims to warn when a regular string contains what looks like a template literal placeholder. It will warn when it finds a string containing the template literal place holder (${something}
) that uses either "
or '
for the quotes.
Examples of incorrect code for this rule:
/*eslint no-template-curly-in-string: "error"*/ "Hello ${name}!"; 'Hello ${name}!'; "Time: ${12 * 60 * 60 * 1000}";
Examples of correct code for this rule:
/*eslint no-template-curly-in-string: "error"*/ `Hello ${name}!`; `Time: ${12 * 60 * 60 * 1000}`; templateFunction`Hello ${name}`;
This rule should not be used in ES3/5 environments.
This rule was introduced in ESLint 3.3.0.
© JS Foundation and other contributors
Licensed under the MIT License.
https://eslint.org/docs/rules/no-template-curly-in-string