promise/spec-only Restriction ​
What it does ​
Disallow use of non-standard Promise static methods.
Why is this bad? ​
Non-standard Promises may cost more maintenance work.
Examples ​
Examples of incorrect code for this rule:
js
Promise.done();
Examples of correct code for this rule:
js
Promise.resolve();