From 3201f55eaf0ca46095bc4b8e423dabf0a2c83e99 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Thu, 3 Sep 2020 11:28:27 +0200 Subject: [PATCH] add some codestyle thoughts --- codestyle.md | 1 + 1 file changed, 1 insertion(+) diff --git a/codestyle.md b/codestyle.md index 1db6ad0f..e40da82e 100644 --- a/codestyle.md +++ b/codestyle.md @@ -5,3 +5,4 @@ otherwise synchronous errors can get swallowed - only named exports, no default exports otherwise it becomes hard to remember what was a default/named export + - should we return promises from storage mutation calls? probably not, as we don't await them anywhere. only read calls should return promises?