Appearance
Prefer using the node:protocol when importing Node.js builtin modules
node:protocol
Examples of incorrect code for this rule:
import fs from "fs";
Examples of correct code for this rule:
import fs from "node:fs";