I am getting the following error in async usage on ESLINT.
eslint Parsing error: Unexpected token function with async
Here is my
I was getting this error also, I added the following to my eslintrc:
{ "env": { "node": true, "es6": true }, "parserOptions": { "ecmaVersion": 8 } }