// ...
import nodePlugin from "eslint-plugin-n";

export default [
  // ...
  {
    plugins: { n: nodePlugin },
    rules: {
      "n/no-unsupported-features/node-builtins": [
        "error",
        {
          ignores: ["fetch"],
        },
      ],
    },
  },
];