require-await
Configuration
rslint.config.ts
Rule Details
This rule warns on async functions that have no await expression.
Examples of incorrect code for this rule:
Examples of correct code for this rule:
Async generator functions are ignored by this rule.
When Not To Use It
If you don't want to warn on async functions that have no await expression, then it's safe to disable this rule.