We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
The following code triggers a no-unsafe-references warning starting in 1.1.x:
no-unsafe-references
import type { Store } from 'redux'; async dispatch(action: any) { return this.page.evaluate((action) => { const store = (window as any).__redux_store as Store; store.dispatch(action); }, action); }
Since this is only a typecast / type reference, it doesn't exist at runtime, and the plugin should not raise a warning.
The text was updated successfully, but these errors were encountered:
3b3cafd
🎉 This issue has been resolved in version 1.1.2 🎉
The release is available on:
Your semantic-release bot 📦🚀
Sorry, something went wrong.
No branches or pull requests
The following code triggers a
no-unsafe-references
warning starting in 1.1.x:Since this is only a typecast / type reference, it doesn't exist at runtime, and the plugin should not raise a warning.
The text was updated successfully, but these errors were encountered: