Skip to content

unicorn/prefer-node-protocol Restriction

🛠️ An auto-fix is available for this rule.

What it does

Prefer using the node:protocol when importing Node.js builtin modules

Why is this bad?

Node.js builtin modules should be imported using the node: protocol to avoid ambiguity with local modules.

Example

Examples of incorrect code for this rule:

javascript
import fs from "fs";

Examples of correct code for this rule:

javascript
import fs from "node:fs";

How to use

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

bash
oxlint --deny unicorn/prefer-node-protocol
json
{
  "rules": {
    "unicorn/prefer-node-protocol": "error"
  }
}

References

Released under the MIT License.