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?
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
myFavNumberis not defined in the function?