We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
no-array-prototype-extensions
False positives with these common non-array classes:
window.localStorage.clear();
Promise.reject();
Promise.reject('foo');
Please comment on this issue with any other examples you notice.
Potential mitigations:
Promise
window
window.localStorage
CC: @smilland
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
no-array-prototype-extensions
False positives with these common non-array classes:
window.localStorage.clear();
Promise.reject();
Promise.reject('foo');
Please comment on this issue with any other examples you notice.
Potential mitigations:
Promise
are not arrays as they are more-likely to be classes based on naming conventionwindow
/ known variables likewindow.localStorage
CC: @smilland
The text was updated successfully, but these errors were encountered: