]> git.proxmox.com Git - pve-eslint.git/blobdiff - eslint/docs/src/rules/no-restricted-modules.md
import 8.41.0 source
[pve-eslint.git] / eslint / docs / src / rules / no-restricted-modules.md
index c8f77bfb246caf876f388ff139dc1652b3a617cc..eb2ca03ffc86d4e47a205fb2d58d895f8edff7b5 100644 (file)
@@ -1,11 +1,10 @@
 ---
 title: no-restricted-modules
-layout: doc
 rule_type: suggestion
 ---
 
 
-This rule was **deprecated** in ESLint v7.0.0. Please use the corresponding rule in [`eslint-plugin-node`](https://github.com/mysticatea/eslint-plugin-node).
+This rule was **deprecated** in ESLint v7.0.0. Please use the corresponding rule in [`eslint-plugin-n`](https://github.com/eslint-community/eslint-plugin-n).
 
 A module in Node.js is a simple or complex functionality organized in a JavaScript file which can be reused throughout the Node.js
 application. The keyword `require` is used in Node.js/CommonJS to import modules into an application. This way you can have dynamic loading where the loaded module name isn't predefined /static, or where you conditionally load a module only if it's "truly required".