是否存在禁止没有占位符的模板文字的 ESLint 或 Prettier 规则?我想用标准引号替换没有占位符的模板文字中的反引号''
;
允许
const templateLiteral = `Some ${string}`;
不允许
const templateLiteral = `Some string`;
转换成
const templateLiteral = 'Some string';
是否存在禁止没有占位符的模板文字的 ESLint 或 Prettier 规则?我想用标准引号替换没有占位符的模板文字中的反引号''
;
允许
const templateLiteral = `Some ${string}`;
不允许
const templateLiteral = `Some string`;
转换成
const templateLiteral = 'Some string';