You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`Hello, ${`Brave ${"New"}`}${"World"}!``${2021} year!``${true} or ${false}``${String(someVar)} foo`// redundant call String as .toString() will be applied automatically
Pass
`Hello, Brave New World!``2021 year!``true or false``${someVar} foo`
The text was updated successfully, but these errors were encountered:
Description
Reports nested instances of a string or a template literal. Suggests inlining the nested instances into the containing template string.
inspired by JetBrains https://www.jetbrains.com/help/phpstorm/javascript-and-typescript-redundant-nesting-in-template-literal.html
Fail
Pass
The text was updated successfully, but these errors were encountered: