disallow \u2028 and \u2029 in string literals (es/no-json-superset)

  • 🔧 The --fix option on the command line can automatically fix some of the problems reported by this rule.

This rule reports ES2019 \u2028 and \u2029 in string literals as errors.

Examples

⛔ Examples of incorrect code for this rule:

/*eslint es/no-json-superset: error */ const u2028 = "
" // a \u2028 is in this string const u2029 = "
" // a \u2029 is in this string
Now loading...

📚 References

Last Updated: 8/27/2019, 11:29:02 AM