# es/no-template-literals

disallow template literals

  • ✅ The following configurations enable this rule: plugin:es/no-new-in-es2015, plugin:es/restrict-to-es3, and plugin:es/restrict-to-es5
  • 🔧 The --fix option on the command line (opens new window) can automatically fix some of the problems reported by this rule.

This rule reports ES2015 template literals as errors.

# Examples

⛔ Examples of incorrect code for this rule:

/*eslint es/no-template-literals: error */ const a1 = `foo` const a2 = `foo${bar}baz` const a3 = tag`foo`
Now loading...

👌 Examples of correct code for this rule:

/*eslint es/no-template-literals: error */ const a1 = "foo" const a2 = "foo"+bar+"baz"
Now loading...

# 📚 References