Wednesday, January 25, 2017

How to warn when you forget to `await` an async function in Javascript?

Leave a Comment

I'm using Babel and Webpack. If I forget to await an async function, it can often go unnoticed. Once in a while, if I forgot the await, an error occurs in the async function and I get an Unhandled promise rejection. Then, I realize that I forgot the await.

Is there a way to get a warning when I forget to add an await?

1 Answers

Answers 1

Setup better eslint integration with webpack, repo, and code editor.
Here is the applicable rule, require await.

Consider integrating the following:

If You Enjoyed This, Take 5 Seconds To Share It

0 comments:

Post a Comment