### Rule details This issue doesn't propose a new rule, but a new value for the `"ignore"` option of the [`n/no-unsupported-features/node-builtins`](https://github.com/eslint-community/eslint-plugin-n/blob/78595c42642349c5f5bb2e0ae9986da9ae93fed8/docs/rules/no-unsupported-features/node-builtins.md#ignores) rule. With Node v20, this rule reports that `fetch` is experimental. I'd like to disable `fetch` checking by adding it to the list of ignored features. ### What type of rule is this? Suggests an alternate way of doing something ### Example code ```js export default { "rules": { "n/no-unsupported-features/es-builtins": [ "error", { ignores: ["fetch"] } ] } }; ``` ### Participation - [ ] I am willing to submit a pull request to implement this rule. ### Additional comments _No response_