Generators-Should-Yield
Documentation Index
Fetch the complete documentation index at: https://docs.sourcery.ai/llms.txt
Use this file to discover all available pages before exploring further.
Sourcery rule id: generators-should-yield
Section titled “Sourcery rule id: generators-should-yield”Description
Section titled “Description”Avoid writing generators that don’t yield any values.
function* wrongGen(x) { let val = 0; val += x;}Explanation
Section titled “Explanation”Generators without yield statements are confusing, since they defy a reader’s expectations.