Pattern: Effect is not yielded
Issue: -
This rule ensures that all redux-saga
effects are properly yield
'ed.
Not yield
'ing an effect might result in strange control flow behaviour.
import { take } from "redux-saga"
// good
function* good() {
yield take("action")
}
// bad
function* bad() {
take("action")
}