Skip to content

Commit 9789614

Browse files
authored
fix: remove no-store-async rule from recommended config (#239)
1 parent b3ceb2b commit 9789614

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/rules/no-store-async.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ export default createRule("no-store-async", {
77
description:
88
"disallow using async/await inside svelte stores because it causes issues with the auto-unsubscribing features",
99
category: "Possible Errors",
10-
recommended: true,
10+
// TODO Switch to recommended in the major version.
11+
// recommended: true,
12+
recommended: false,
1113
default: "error",
1214
},
1315
schema: [],

0 commit comments

Comments
 (0)