With the latest version of nodejs 7.6+ I started using async/await.
I was using jshint but from what I read they currently do support this syntax and some suggested
Since async/await is an ES2017 feature, you need to add that to your .eslintrc.js:
async
await
.eslintrc.js
module.exports = { // ... "parserOptions": { "ecmaVersion": 2017 }, // ... }