Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2.8k
Description
Before You File a Documentation Request Please Confirm You Have Done The Following...
- I have looked for existingopen or closed documentation requests that match my proposal.
- I haveread the FAQ and my problem is not listed.
Suggested Changes
Under "Options", it has:
This rule accepts the following options, and has more strict settings in thestrict andstrict-type-checked configs.
...
const defaultOptionsRecommended: Options = ['in-try-catch'];
// These options are merged on top of the recommended defaults
const defaultOptionsStrict: Options = ['error-handling-correctness-only'];
Which implies that the rule is part of the recommended config, while in reality the rule is not enabled in the recommended config, only in the strict config.
Affected URL(s)
https://typescript-eslint.io/rules/return-await/
Additional Info
Somewhat related -#10423. The rule no longer explicitly claims at the top to be part of@typescript-eslint/recommended-type-checked
, but still implies it is in the body.