Literal values being interpolated into templates are redundant.
This rule disallows using literal values in templates.
The following patterns are considered warnings:
html`foo ${'bar'}`;
html`foo ${true}`;
The following patterns are not warnings:
html`foo ${someVar}`;
If you don't care about interpolating literal values, then you will not need this rule.