disallow new.target meta property (es/no-new-target)

This rule reports ES2015 new.target meta property as errors.

Examples

⛔ Examples of incorrect code for this rule:

/*eslint es/no-new-target: error */ class A { constructor() { doSomething(new.target) } }
Now loading...

📚 References

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