I am getting the following error in async usage on ESLINT.
eslint Parsing error: Unexpected token function with async
Here is my
In my case it got fixed when I just changed from:
"parserOptions": { "ecmaVersion": 8 }
to
"parserOptions": { "ecmaVersion": 2018 }