From 9cd24b1744194890dcec266b0a9b22ccf7a9dcf1 Mon Sep 17 00:00:00 2001 From: yosuke ota Date: Tue, 23 Aug 2022 13:37:44 +0900 Subject: [PATCH] fix: remove no-store-async rule from recommended config --- src/rules/no-store-async.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/rules/no-store-async.ts b/src/rules/no-store-async.ts index d805f1854..6934b697e 100644 --- a/src/rules/no-store-async.ts +++ b/src/rules/no-store-async.ts @@ -7,7 +7,9 @@ export default createRule("no-store-async", { description: "disallow using async/await inside svelte stores because it causes issues with the auto-unsubscribing features", category: "Possible Errors", - recommended: true, + // TODO Switch to recommended in the major version. + // recommended: true, + recommended: false, default: "error", }, schema: [],