创建插件
ESLint 插件使用额外的功能扩展了 ESLint。在大多数情况下,您将通过创建插件来扩展 ESLint,这些插件封装了您想要在多个项目之间共享的额外功能。
创建插件
插件是一个 JavaScript 对象,它向 ESLint 公开某些属性
meta
- 关于插件的信息。configs
- 包含命名配置的对象。rules
- 包含自定义规则定义的对象。processors
- 包含命名处理器的对象。
要开始使用,请创建一个 JavaScript 文件并导出一个对象,其中包含您希望 ESLint 使用的属性。为了使您的插件尽可能易于维护,我们建议您将插件入口点文件格式化成这样
const plugin = {
meta: {},
configs: {},
rules: {},
processors: {}
};
// for ESM
export default plugin;
// OR for CommonJS
module.exports = plugin;
如果您计划将您的插件作为 npm 包分发,请确保导出插件对象的模块是您包的默认导出。这将使 ESLint 能够在命令行中使用 --plugin
选项指定插件时导入插件。
插件中的元数据
为了更容易调试和更有效地缓存插件,建议在插件根目录的 meta
对象中提供 name
和 version
,像这样
const plugin = {
// preferred location of name and version
meta: {
name: "eslint-plugin-example",
version: "1.2.3"
},
rules: {
// add rules here
}
};
// for ESM
export default plugin;
// OR for CommonJS
module.exports = plugin;
meta.name
属性应该与您的插件的 npm 包名称匹配,meta.version
属性应该与您的插件的 npm 包版本匹配。实现此目的的最简单方法是从您的 package.json
中读取此信息,如本例所示
import fs from "fs";
const pkg = JSON.parse(fs.readFileSync(new URL("./package.json", import.meta.url), "utf8"));
const plugin = {
// preferred location of name and version
meta: {
name: pkg.name,
version: pkg.version
},
rules: {
// add rules here
}
};
export default plugin;
作为替代方案,您也可以在插件的根目录公开 name
和 version
属性,例如
const plugin = {
// alternate location of name and version
name: "eslint-plugin-example",
version: "1.2.3",
rules: {
// add rules here
}
};
// for ESM
export default plugin;
// OR for CommonJS
module.exports = plugin;
插件中的规则
插件可以公开自定义规则以在 ESLint 中使用。为此,插件必须导出一个 rules
对象,其中包含规则 ID 到规则的键值映射。规则 ID 不必遵循任何命名约定,除了它不应包含 /
字符(因此它可以只是 dollar-sign
而不是 foo/dollar-sign
,例如)。要了解有关在插件中创建自定义规则的更多信息,请参阅自定义规则。
const plugin = {
meta: {
name: "eslint-plugin-example",
version: "1.2.3"
},
rules: {
"dollar-sign": {
create(context) {
// rule implementation ...
}
}
}
};
// for ESM
export default plugin;
// OR for CommonJS
module.exports = plugin;
为了在配置文件中使用插件中的规则,导入插件并将其包含在 plugins
键中,指定命名空间。然后,使用该命名空间在 rules
配置中引用该规则,如下所示
// eslint.config.js
import example from "eslint-plugin-example";
export default [
{
plugins: {
example
},
rules: {
"example/dollar-sign": "error"
}
}
];
插件中的处理器
插件可以通过提供 processors
对象来公开 处理器 以在配置文件中使用。与规则类似,processors
对象中的每个键都是处理器的名称,每个值都是处理器对象本身。这是一个例子
const plugin = {
meta: {
name: "eslint-plugin-example",
version: "1.2.3"
},
processors: {
"processor-name": {
preprocess(text, filename) {/* ... */},
postprocess(messages, filename) { /* ... */ },
}
}
};
// for ESM
export default plugin;
// OR for CommonJS
module.exports = plugin;
为了在配置文件中使用插件中的处理器,导入插件并将其包含在 plugins
键中,指定命名空间。然后,使用该命名空间在 processor
配置中引用该处理器,如下所示
// eslint.config.js
import example from "eslint-plugin-example";
export default [
{
plugins: {
example
},
processor: "example/processor-name"
}
];
插件中的配置
您可以通过在 configs
键下指定配置来将配置捆绑在插件内部。当您想要将一组自定义规则与启用推荐选项的配置捆绑在一起时,这可能很有用。每个插件支持多个配置。
您可以从插件的配置中包含插件中的单个规则,该配置也包含在插件中。在配置中,您必须在 plugins
对象中指定您的插件名称,以及您要启用的任何作为插件一部分的规则。任何插件规则都必须以插件命名空间为前缀。这是一个例子
const plugin = {
meta: {
name: "eslint-plugin-example",
version: "1.2.3"
},
configs: {},
rules: {
"dollar-sign": {
create(context) {
// rule implementation ...
}
}
}
};
// assign configs here so we can reference `plugin`
Object.assign(plugin.configs, {
recommended: [{
plugins: {
example: plugin
},
rules: {
"example/dollar-sign": "error"
},
languageOptions: {
globals: {
myGlobal: "readonly"
},
parserOptions: {
ecmaFeatures: {
jsx: true
}
}
}
}]
});
// for ESM
export default plugin;
// OR for CommonJS
module.exports = plugin;
此插件导出一个 recommended
配置,该配置是一个包含一个配置对象的数组。当只有一个配置对象时,您也可以只导出该对象,而无需包含数组。
为了在配置文件中使用插件中的配置,导入插件并直接通过插件对象访问配置。假设配置是一个数组,使用展开运算符将其添加到从配置文件返回的数组中,如下所示
// eslint.config.js
import example from "eslint-plugin-example";
export default [
...example.configs.recommended
];
测试插件
ESLint 提供了 RuleTester
实用程序,以方便测试您的插件的规则。
Lint 插件
ESLint 插件也应该进行 linting!建议使用 recommended
配置来 lint 您的插件
共享插件
为了使您的插件公开可用,您必须将其发布到 npm。执行此操作时,请务必
-
将 ESLint 列为对等依赖项。 因为插件旨在与 ESLint 一起使用,所以将
eslint
包添加为对等依赖项非常重要。为此,手动编辑您的package.json
文件以包含peerDependencies
块,如下所示{ "peerDependencies": { "eslint": ">=9.0.0" } }
-
指定关键字。 ESLint 插件应在您的
package.json
文件中指定eslint
、eslintplugin
和eslint-plugin
作为 关键字。