xxxxxxxxxx
Including Async Function Within Firebase Cloud Functions (eslint "Parsing error: Unexpected token function")
https://stackoverflow.com/questions/53735009/including-async-function-within-firebase-cloud-functions-eslint-parsing-error
"""
I tried all solutions above which did not work for me. It was due to bad syntax in my package.json :
"scripts": {
"lint": "eslint ."
},
changed to :
"scripts": {
"lint": "eslint"
},
Like said Burak in the comments, this dot is put by default when we create firebase functions
"""