Suggestion
Right now, thanks to #865 we don't get flagged by a Promise<void> returning function
groupService.delete(params.id); <-- not flagged
But if we await it, which we almost always should, it's flagged
await groupService.delete(params.id); <-- flagged :(
I think we should allow await Promise<void> for these scenarios, when we're using the ignoreVoid option
Suggestion
Right now, thanks to #865 we don't get flagged by a
Promise<void>returning functionBut if we
awaitit, which we almost always should, it's flaggedI think we should allow
await Promise<void>for these scenarios, when we're using theignoreVoidoption