From c364bc9e83d6dd1f154f4bb793b843e86e4a06ab Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Fri, 6 Oct 2023 07:58:22 +0300 Subject: [PATCH] docs: link to new TypeScript Type Checker APIs section for custom rules --- docs/developers/Custom_Rules.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developers/Custom_Rules.mdx b/docs/developers/Custom_Rules.mdx index e64156d1ff4e..336e33183aa2 100644 --- a/docs/developers/Custom_Rules.mdx +++ b/docs/developers/Custom_Rules.mdx @@ -204,7 +204,7 @@ export const rule = createRule({ ## Typed Rules :::tip -Read TypeScript's [Compiler APIs > Using the Type Checker](https://github.com/microsoft/TypeScript/wiki/Using-the-Compiler-API#using-the-type-checker) section for how to use a program's type checker. +Read TypeScript's [Compiler APIs > Type Checker APIs](https://github.com/microsoft/TypeScript/wiki/Using-the-Compiler-API#type-checker-apis) for how to use a program's type checker. ::: The biggest addition typescript-eslint brings to ESLint rules is the ability to use TypeScript's type checker APIs.