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
{{ message }}
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.
The value for
no-return-await
from airbnb is being incorrectly mapped toreturn-await
(https://typescript-eslint.io/rules/return-await/)This is effectively linting the opposite of what it should and forcing the code to always add
await
to the return instead of disallowing it.Recommend switching to
@typescript-eslint/return-await': [baseBestPracticesRules['no-return-await'], 'never'],
for parity with the airbnb base configThe text was updated successfully, but these errors were encountered: