自定义规则
本页介绍如何使用 typescript-eslint 编写你自己的自定义 ESLint 规则。 在编写自定义规则之前,你应该熟悉 ESLint 的开发者指南 和 ASTs。
只要你在 ESLint 配置中使用 @typescript-eslint/parser
作为 parser
,自定义 ESLint 规则对于 JavaScript 和 TypeScript 代码的工作方式通常相同。
自定义规则编写的主要三个变化是:
英:As long as you are using @typescript-eslint/parser
as the parser
in your ESLint configuration, custom ESLint rules generally work the same way for JavaScript and TypeScript code.
The main three changes to custom rules writing are:
- 实用工具包: 我们建议使用
@typescript-eslint/utils
创建自定义规则 - AST 扩展: 在规则选择器中定位特定于 TypeScript 的语法
- 类型规则: 使用 TypeScript 类型检查器来通知规则逻辑
实用工具包
@typescript-eslint/utils
包充当 eslint
的替换包,导出所有相同的对象和类型,但具有 typescript-eslint 支持。
它还导出大多数自定义 typescript-eslint 规则倾向于使用的常见实用函数和常量。
英:The @typescript-eslint/utils
package acts as a replacement package for eslint
that exports all the same objects and types, but with typescript-eslint support.
It also exports common utility functions and constants most custom typescript-eslint rules tend to use.
@types/eslint
类型基于 @types/estree
,无法识别 typescript-eslint 节点和属性。
在 TypeScript 中编写自定义 typescript-eslint 规则时,通常不需要从 eslint
导入。
RuleCreator
创建利用 typescript-eslint 功能和/或语法的自定义 ESLint 规则的推荐方法是使用 @typescript-eslint/utils
导出的 ESLintUtils.RuleCreator
函数。
英:The recommended way to create custom ESLint rules that make use of typescript-eslint features and/or syntax is with the ESLintUtils.RuleCreator
function exported by @typescript-eslint/utils
.
它接受一个将规则名称转换为其文档 URL 的函数,然后返回一个接受规则模块对象的函数。
RuleCreator
将从提供的 meta.messages
对象推断允许规则触发的允许消息 ID。
英:It takes in a function that transforms a rule name into its documentation URL, then returns a function that takes in a rule module object.
RuleCreator
will infer the allowed message IDs the rule is allowed to emit from the provided meta.messages
object.
此规则禁止以小写字母开头的函数声明:
英:This rule bans function declarations that start with a lower-case letter:
import { ESLintUtils } from '@typescript-eslint/utils';
const createRule = ESLintUtils.RuleCreator(
name => `https://example.com/rule/${name}`,
);
// Type: RuleModule<"uppercase", ...>
export const rule = createRule({
create(context) {
return {
FunctionDeclaration(node) {
if (node.id != null) {
if (/^[a-z]/.test(node.id.name)) {
context.report({
messageId: 'uppercase',
node: node.id,
});
}
}
},
};
},
name: 'uppercase-first-declarations',
meta: {
docs: {
description:
'Function declaration names should start with an upper-case letter.',
},
messages: {
uppercase: 'Start this name with an upper-case letter.',
},
type: 'suggestion',
schema: [],
},
defaultOptions: [],
});
RuleCreator
规则创建器函数返回类型为 @typescript-eslint/utils
导出的 RuleModule
接口的规则。
它允许指定泛型:
英:RuleCreator
rule creator functions return rules typed as the RuleModule
interface exported by @typescript-eslint/utils
.
It allows specifying generics for:
MessageIds
: 可能报告的字符串字面量消息 ID 的联合Options
: 用户可以为规则配置哪些选项(默认情况下,[]
)
如果规则能够接受规则选项,请将它们声明为包含单个规则选项对象的元组类型:
英:If the rule is able to take in rule options, declare them as a tuple type containing a single object of rule options:
import { ESLintUtils } from '@typescript-eslint/utils';
type MessageIds = 'lowercase' | 'uppercase';
type Options = [
{
preferredCase?: 'lower' | 'upper';
},
];
// Type: RuleModule<MessageIds, Options, ...>
export const rule = createRule<Options, MessageIds>({
// ...
});
未记录规则
尽管通常不建议在没有文档的情况下创建自定义规则,但如果你确定要这样做,可以使用 ESLintUtils.RuleCreator.withoutDocs
函数直接创建规则。
它应用与上面的 createRule
相同的类型推断,而不强制执行文档 URL。
英:Although it is generally not recommended to create custom rules without documentation, if you are sure you want to do this you can use the ESLintUtils.RuleCreator.withoutDocs
function to directly create a rule.
It applies the same type inference as the createRule
s above without enforcing a documentation URL.
import { ESLintUtils } from '@typescript-eslint/utils';
export const rule = ESLintUtils.RuleCreator.withoutDocs({
create(context) {
// ...
},
meta: {
// ...
},
});
我们建议任何自定义 ESLint 规则都包含描述性错误消息和信息性文档的链接。
处理规则选项
ESLint 规则可以采用选项。 处理选项时,你最多需要在三个位置添加信息:
英:ESLint rules can take options. When handling options, you will need to add information in at most three places:
Options
到RuleCreator
的泛型类型参数,你在其中声明选项的类型meta.schema
属性,你可以在其中添加描述选项形状的 JSON 架构defaultOptions
属性,你可以在其中添加默认选项值
type MessageIds = 'lowercase' | 'uppercase';
type Options = [
{
preferredCase: 'lower' | 'upper';
},
];
export const rule = createRule<Options, MessageIds>({
meta: {
// ...
schema: [
{
type: 'object',
properties: {
preferredCase: {
type: 'string',
enum: ['lower', 'upper'],
},
},
additionalProperties: false,
},
],
},
defaultOptions: [
{
preferredCase: 'lower',
},
],
create(context, options) {
if (options[0].preferredCase === 'lower') {
// ...
}
},
});
读取选项时,使用 create
函数的第二个参数,而不是第一个参数中的 context.options
。 第一个是由 ESLint 创建的,没有应用默认选项。
英:When reading the options, use the second parameter of the create
function, not context.options
from the first parameter. The first is created by ESLint and does not have the default options applied.
AST 扩展
@typescript-eslint/estree
为 TypeScript 语法创建 AST 节点,其名称以 TS
开头,例如 TSInterfaceDeclaration
和 TSTypeAnnotation
。
这些节点的处理方式与任何其他 AST 节点一样。
你可以在规则选择器中查询它们。
英:@typescript-eslint/estree
creates AST nodes for TypeScript syntax with names that begin with TS
, such as TSInterfaceDeclaration
and TSTypeAnnotation
.
These nodes are treated just like any other AST node.
You can query for them in your rule selectors.
上述规则的此版本禁止以小写字母开头的接口声明名称:
英:This version of the above rule instead bans interface declaration names that start with a lower-case letter:
import { ESLintUtils } from '@typescript-eslint/utils';
export const rule = createRule({
create(context) {
return {
TSInterfaceDeclaration(node) {
if (/^[a-z]/.test(node.id.name)) {
// ...
}
},
};
},
// ...
});
节点类型
节点的 TypeScript 类型存在于 @typescript-eslint/utils
导出的 TSESTree
命名空间中。
上面的规则主体可以更好地用 TypeScript 编写,并在 node
上添加类型注释:
英:TypeScript types for nodes exist in a TSESTree
namespace exported by @typescript-eslint/utils
.
The above rule body could be better written in TypeScript with a type annotation on the node
:
还会导出 AST_NODE_TYPES
枚举来保存 AST 节点 type
属性的值。
TSESTree.Node
可用作联合类型,使用其 type
成员作为判别式。
英:An AST_NODE_TYPES
enum is exported as well to hold the values for AST node type
properties.
TSESTree.Node
is available as union type that uses its type
member as a discriminant.
例如,检查 node.type
可以缩小 node
的类型:
英:For example, checking node.type
can narrow down the type of the node
:
import { AST_NODE_TYPES, TSESTree } from '@typescript-eslint/utils';
export function describeNode(node: TSESTree.Node): string {
switch (node.type) {
case AST_NODE_TYPES.ArrayExpression:
return `Array containing ${node.elements.map(describeNode).join(', ')}`;
case AST_NODE_TYPES.Literal:
return `Literal value ${node.raw}`;
default:
return '🤷';
}
}
显式节点类型
使用 esquery 的更多功能(例如针对多个节点类型)的规则查询可能无法推断 node
的类型。
在这种情况下,最好添加显式类型声明。
英:Rule queries that use more features of esquery such as targeting multiple node types may not be able to infer the type of the node
.
In that case, it is best to add an explicit type declaration.
此规则片段针对函数和接口声明的名称节点:
英:This rule snippet targets name nodes of both function and interface declarations:
import { AST_NODE_TYPES, ESLintUtils } from '@typescript-eslint/utils';
export const rule = createRule({
create(context) {
return {
'FunctionDeclaration, TSInterfaceDeclaration'(
node:
| AST_NODE_TYPES.FunctionDeclaration
| AST_NODE_TYPES.TSInterfaceDeclaration,
) {
if (/^[a-z]/.test(node.id.name)) {
// ...
}
},
};
},
// ...
});
类型规则
阅读 TypeScript 的 编译器 API > 类型检查器 API 了解如何使用程序的类型检查器。
typescript-eslint 为 ESLint 规则带来的最大附加功能是使用 TypeScript 类型检查器 API 的能力。
英:The biggest addition typescript-eslint brings to ESLint rules is the ability to use TypeScript's type checker APIs.
@typescript-eslint/utils
导出包含 getParserServices
函数的 ESLintUtils
命名空间,该函数接受 ESLint 上下文并返回 services
对象。
英:@typescript-eslint/utils
exports an ESLintUtils
namespace containing a getParserServices
function that takes in an ESLint context and returns a services
object.
该 services
对象包含:
英:That services
object contains:
program
: 如果启用类型检查,则为完整的 TypeScriptts.Program
对象,否则为null
esTreeNodeToTSNodeMap
:@typescript-eslint/estree
TSESTree.Node
节点到其 TypeScriptts.Node
等效项的映射tsNodeToESTreeNodeMap
: TypeScriptts.Node
节点与其@typescript-eslint/estree
TSESTree.Node
等效节点的映射
如果启用类型检查,则 services
对象还包含:
英:If type checking is enabled, that services
object additionally contains:
getTypeAtLocation
: 使用TSESTree.Node
参数而不是ts.Node
封装类型检查器函数getSymbolAtLocation
: 使用TSESTree.Node
参数而不是ts.Node
封装类型检查器函数
这些附加对象在内部从 ESTree 节点映射到其 TypeScript 等效项,然后调用 TypeScript 程序。 通过使用解析器服务中的 TypeScript 程序,规则可以向 TypeScript 询问这些节点的完整类型信息。
英:Those additional objects internally map from ESTree nodes to their TypeScript equivalents, then call to the TypeScript program. By using the TypeScript program from the parser services, rules are able to ask TypeScript for full type information on those nodes.
此规则禁止通过 typescript-eslint 的服务使用 TypeScript 类型检查器对枚举进行 for-of 循环:
英:This rule bans for-of looping over an enum by using the TypeScript type checker via typescript-eslint's services:
import { ESLintUtils } from '@typescript-eslint/utils';
import * as tsutils from 'ts-api-utils';
import * as ts from 'typescript';
export const rule = createRule({
create(context) {
return {
ForOfStatement(node) {
// 1. Grab the parser services for the rule
const services = ESLintUtils.getParserServices(context);
// 2. Find the TS type for the ES node
const type = services.getTypeAtLocation(node);
// 3. Check the TS type using the TypeScript APIs
if (tsutils.isTypeFlagSet(type, ts.TypeFlags.EnumLike)) {
context.report({
messageId: 'loopOverEnum',
node: node.right,
});
}
},
};
},
meta: {
docs: {
description: 'Avoid looping over enums.',
},
messages: {
loopOverEnum: 'Do not loop over enums.',
},
type: 'suggestion',
schema: [],
},
name: 'no-loop-over-enum',
defaultOptions: [],
});
规则可以使用 services.program.getTypeChecker()
检索其完整支持的 TypeScript 类型检查器。
对于未由解析器服务封装的 TypeScript API,这可能是必要的。
我们建议不要仅根据 services.program
是否存在来更改规则逻辑。
根据我们的经验,当规则在有或没有类型信息的情况下表现不同时,用户通常会感到惊讶。
此外,如果他们错误配置了 ESLint 配置,他们可能不会意识到为什么规则开始表现不同。
考虑在规则的显式选项后面进行门控类型检查,或者创建两个版本的规则。
测试
@typescript-eslint/rule-tester
导出具有与内置 ESLint RuleTester
类似 API 的 RuleTester
。
它应该提供与你在 ESLint 配置中使用的相同的 parser
和 parserOptions
。
英:@typescript-eslint/rule-tester
exports a RuleTester
with a similar API to the built-in ESLint RuleTester
.
It should be provided with the same parser
and parserOptions
you would use in your ESLint configuration.
以下是快速入门指南。 有关更深入的文档和示例 请参阅 @typescript-eslint/rule-tester
包文档。
英:Below is a quick-start guide. For more in-depth docs and examples see the @typescript-eslint/rule-tester
package documentation.
测试非类型化规则
对于不需要类型信息的规则,仅传递 parser
即可:
英:For rules that don't need type information, passing just the parser
will do:
import { RuleTester } from '@typescript-eslint/rule-tester';
import rule from './my-rule';
const ruleTester = new RuleTester({
parser: '@typescript-eslint/parser',
});
ruleTester.run('my-rule', rule, {
valid: [
/* ... */
],
invalid: [
/* ... */
],
});
测试类型化规则
对于确实需要类型信息的规则,还必须传入 parserOptions
。
测试必须至少提供一个绝对 tsconfigRootDir
路径以及该目录的相对 project
路径:
英:For rules that do need type information, parserOptions
must be passed in as well.
Tests must have at least an absolute tsconfigRootDir
path provided as well as a relative project
path from that directory:
import { RuleTester } from '@typescript-eslint/rule-tester';
import rule from './my-typed-rule';
const ruleTester = new RuleTester({
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.json',
tsconfigRootDir: __dirname,
},
});
ruleTester.run('my-typed-rule', rule, {
valid: [
/* ... */
],
invalid: [
/* ... */
],
});
目前,RuleTester
要求磁盘上存在以下物理文件以用于键入规则:
英:For now, RuleTester
requires the following physical files be present on disk for typed rules:
tsconfig.json
: tsconfig 用作测试 "project"- 以下两个文件之一:
file.ts
: 用于普通 TS 测试的空白测试文件react.tsx
: 用于parserOptions: { ecmaFeatures: { jsx: true } }
测试的空白测试文件