Skip to content
← Back to rules

eslint/require-yield Correctness

✅ This rule is turned on by default.

What it does ​

This rule generates warnings for generator functions that do not have the yield keyword.

Why is this bad? ​

Probably a mistake.

Examples ​

Examples of incorrect code for this rule:

javascript
function* foo() {
  return 10;
}

How to use ​

To enable this rule using the config file or in the CLI, you can use:

json
{
  "rules": {
    "require-yield": "error"
  }
}
ts
import { defineConfig } from "oxlint";

export default defineConfig({
  rules: {
    "require-yield": "error",
  },
});
bash
oxlint --deny require-yield

Version ​

This rule was added in v0.0.4.

References ​