版本

no-restricted-modules

禁止使用 require 加载的指定模块

此规则在 ESLint v7.0.0 中已 **弃用**。请在 eslint-plugin-n 中使用相应的规则。

Node.js 中的模块是一个简单或复杂的组织在 JavaScript 文件中的功能,可以在整个 Node.js 应用程序中重复使用。关键字 require 用于在 Node.js/CommonJS 中将模块导入应用程序。这样,您可以进行动态加载,其中加载的模块名称不是预定义的/静态的,或者您仅在“真正需要”时才条件加载模块。

为什么要限制模块?

禁止使用特定的 Node.js 模块在您希望限制开发人员可以使用的方法时可能很有用。例如,如果您想禁止文件系统访问,则可以阻止使用 fs 模块。

规则详细信息

此规则允许您指定您不想在应用程序中使用的模块。

选项

此规则采用一个或多个字符串作为选项:受限模块的名称。

"no-restricted-modules": ["error", "foo-module", "bar-module"]

它还可以采用一个包含 paths 列表和 gitignore 风格 patterns 字符串的对象。

"no-restricted-modules": ["error", { "paths": ["foo-module", "bar-module"] }]
"no-restricted-modules": ["error", {
    "paths": ["foo-module", "bar-module"],
    "patterns": ["foo-module/private/*", "bar-module/*","!baz-module/good"]
}]

您还可以为要限制的任何路径指定自定义消息,如下所示

"no-restricted-modules": ["error", {
  "name": "foo-module",
  "message": "Please use bar-module instead."
  }
]

或像这样

"no-restricted-modules": ["error",{
"paths":[{
  "name": "foo-module",
  "message": "Please use bar-module instead."
  }]
}]

自定义消息将附加到默认错误消息。请注意,您不能为受限模式指定自定义错误消息,因为特定模块可能与多个模式匹配。

要限制所有 Node.js 核心模块的使用(通过 https://github.com/nodejs/node/tree/master/lib

{
    "no-restricted-modules": ["error",
        "assert","buffer","child_process","cluster","crypto","dgram","dns","domain","events","freelist","fs","http","https","module","net","os","path","punycode","querystring","readline","repl","smalloc","stream","string_decoder","sys","timers","tls","tracing","tty","url","util","vm","zlib"
    ]
}

示例

示例 **不正确** 代码,用于此规则,示例 "fs", "cluster", "lodash" 受限模块

在游乐场中打开
/*eslint no-restricted-modules: ["error", "fs", "cluster"]*/

var fs = require('fs');
var cluster = require('cluster');
在游乐场中打开
/*eslint no-restricted-modules: ["error", {"paths": ["cluster"] }]*/

var cluster = require('cluster');
在游乐场中打开
/*eslint no-restricted-modules: ["error", { "patterns": ["lodash/*"] }]*/

var pick = require('lodash/pick');

示例 **正确** 代码,用于此规则,示例 "fs", "cluster", "lodash" 受限模块

在游乐场中打开
/*eslint no-restricted-modules: ["error", "fs", "cluster"]*/

var crypto = require('crypto');
在游乐场中打开
/*eslint no-restricted-modules: ["error", {
    "paths": ["fs", "cluster"],
    "patterns": ["lodash/*", "!lodash/pick"]
}]*/

var crypto = require('crypto');
var pick = require('lodash/pick');

版本

此规则是在 ESLint v0.6.0 中引入的。

资源

更改语言