-
-
Notifications
You must be signed in to change notification settings - Fork 690
Labels
A-LinterArea: linterArea: linterL-JavaScriptLanguage: JavaScript and super languagesLanguage: JavaScript and super languagesS-Help-wantedStatus: you're familiar with the code base and want to help the projectStatus: you're familiar with the code base and want to help the project
Description
https://typescript-eslint.io/rules/no-unnecessary-template-expression/
This rule was called no-useless-template-literals
in the past.
In terraform land it's the Interpolation-only expressions are deprecated
warning.
Basically:
const MYSTR = "Hello";
const myComplicatedObject = {
value: `${MYSTR}` // warning "no-useless-template-literals" -> change to value: MYSTR
}
Rel1cx and Netail
Metadata
Metadata
Assignees
Labels
A-LinterArea: linterArea: linterL-JavaScriptLanguage: JavaScript and super languagesLanguage: JavaScript and super languagesS-Help-wantedStatus: you're familiar with the code base and want to help the projectStatus: you're familiar with the code base and want to help the project