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
This piece of code passes every static analyzer, ESLint and TS because they don't know that the arrow function is run in a different context:
import greenlet from 'greenlet' const myFavNumber = 43; const getFav = greenlet( async () => { return myFavNumber });
Are you aware of any way to mark the function in a way that linters/parsers know myFavNumber is not defined in the function?
myFavNumber
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This piece of code passes every static analyzer, ESLint and TS because they don't know that the arrow function is run in a different context:
Are you aware of any way to mark the function in a way that linters/parsers know
myFavNumber
is not defined in the function?The text was updated successfully, but these errors were encountered: