eslint无法识别模板文字

时间:2016-03-22 18:15:36

标签: javascript ecmascript-6 eslint template-literals

const perunString = perun.times(100).toFixed(2).toString();
return `%{perunString} %`;

这给出了两个错误

  1. ' perunString'已定义但从未使用
  2. 字符串必须使用单引号

1 个答案:

答案 0 :(得分:3)

模板插值语法中存在错误,可能导致错误:

file1

请注意从file2// Before `%{perunString} %` // After `${perunString} %` 的更改。