From 76324ace67893c3d7e38a369114d6128df9ffb65 Mon Sep 17 00:00:00 2001 From: Max Coplan Date: Tue, 24 Mar 2020 21:34:45 -0400 Subject: [PATCH] Docs: Add further reading to rule (#13084) This article really is the clearest explanation of this rule and how to understand it. --- docs/rules/no-return-await.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/rules/no-return-await.md b/docs/rules/no-return-await.md index 02ba9af02a9..f8ec4d93eca 100644 --- a/docs/rules/no-return-await.md +++ b/docs/rules/no-return-await.md @@ -47,3 +47,4 @@ If you want to use `await` to denote a value that is a thenable, even when it is ## Further Reading [`async function` on MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function) +[`await vs return vs return await` by Jake Archibald](https://jakearchibald.com/2017/await-vs-return-vs-return-await/)