标签: javascript typescript eslint
在我看来,如果一个变量永远不会没有内涵,那么最好通过linter引发错误。
在以下情况下。
const nameVariable = "Bob"; const result = `Mr. ${name}` // >> I wanna get error for this line.