Skip to content

Commit 443373e

Browse files
fix: functional/no-return-void turn of in app mode with recommened fp enforcement
1 parent 628acb5 commit 443373e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/configs/functional.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export async function functional(
100100
ignoreVoid: true,
101101
},
102102
],
103-
"functional/no-return-void": "error",
103+
"functional/no-return-void": mode === "library" ? "error" : "off",
104104
"ts/prefer-readonly-parameter-types": "off",
105105
"functional/prefer-immutable-types": [
106106
mode === "library" ? "warn" : "off",

0 commit comments

Comments
 (0)