Urara-Blog/node_modules/.pnpm-store/v3/files/ae/6184ab35138b67452d5809c2943f8ff92cb67f3f714ebc8f4fdbd9d0e80cf4c68446c7049f8c402cddedc251fce8b30d22a24dd068a74410b004c31361d83e
2022-08-14 01:14:53 +08:00

42 lines
1 KiB
Text

---
description: 'Disallow async functions which have no `await` expression.'
---
> 🛑 This file is source code, not the primary documentation location! 🛑
>
> See **https://typescript-eslint.io/rules/require-await** for documentation.
## Rule Details
This rule extends the base [`eslint/require-await`](https://eslint.org/docs/rules/require-await) rule.
It uses type information to add support for `async` functions that return a `Promise`.
Examples of **correct** code for this rule:
```ts
async function returnsPromise1() {
return Promise.resolve(1);
}
const returnsPromise2 = () => returnsPromise1();
```
## How to Use
```jsonc
{
// note you must disable the base rule as it can report incorrect errors
"require-await": "off",
"@typescript-eslint/require-await": "error"
}
```
## Options
See [`eslint/require-await` options](https://eslint.org/docs/rules/require-await#options).
<sup>
Taken with ❤️ [from ESLint core](https://github.com/eslint/eslint/blob/main/docs/rules/require-await.md)
</sup>