Is there an ESLint or Prettier rule that would disallow template literals without a placeholder? I would like to replace backticks in template literals without placeholder with standard quotation marks ''
;
Allowed
const templateLiteral = `Some ${string}`;
Disallowed
const templateLiteral = `Some string`;
Turned into
const templateLiteral = 'Some string';
