noNodejsModules (since v1.5.0)
Diagnostic Category: lint/nursery/noNodejsModules
Source: no-nodejs-modules
Forbid the use of Node.js builtin modules.
This can be useful for client-side web projects that don’t have access to those modules.
Examples
Section titled ExamplesInvalid
Section titled Invalidimport fs from "fs";
nursery/noNodejsModules.js:1:16 lint/nursery/noNodejsModules ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
⚠ Using Node.js modules is forbidden.
> 1 │ import fs from "fs";
│ ^^^^
2 │
ℹ Can be useful for client-side web projects that do not have access to those modules.
ℹ Remove the import module.
import path from "node:path";
nursery/noNodejsModules.js:1:18 lint/nursery/noNodejsModules ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
⚠ Using Node.js modules is forbidden.
> 1 │ import path from "node:path";
│ ^^^^^^^^^^^
2 │
ℹ Can be useful for client-side web projects that do not have access to those modules.
ℹ Remove the import module.
Valid
Section titled Validimport fs from "fs-custom";