effector / effector/eslint-plugin

Rule: `no-fx-direct-call`

Open
#47 6 comments 1 reaction 0 assignees View on GitHub
enhancement need to discuss
Dominant language
TypeScript
Stars
94
Forks
18
PR merge metrics
No merged PRs in 30d

Description

// 👍
```ts
const myFx = createEffect();
const evt = createEvent();

forward({
from: createEvent,
to: myFx
})

await allSettled(myFx, { scope })

const anotherFx = createEffect(async () => {
await myFx()
})
```

// 👎
```ts
const myFx = createEffect();

myFx()
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.