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 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
export default {
"rules": {
"n/no-unsupported-features/es-builtins": [
"error",
{ ignores: ["fetch"] }
]
}
};
Participation
Additional comments
No response