You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is just suggestion, but it would allow to eliminate quite common mistake (at least in my experience).
asyncfunctionfoo(){
...
}foo();// show warning that async is called without awaitawaitfoo();// ok
Obviously it should be warning only as many times this is intentional.
From my experience this kind of mistakes are hard to find and easy to make - that's why I think it would be really useful.
Thanks for consideration.
The text was updated successfully, but these errors were encountered:
This is just suggestion, but it would allow to eliminate quite common mistake (at least in my experience).
Obviously it should be warning only as many times this is intentional.
From my experience this kind of mistakes are hard to find and easy to make - that's why I think it would be really useful.
Thanks for consideration.
The text was updated successfully, but these errors were encountered: