Skip to content

Commit 4bc7214

Browse files
chore: fix project service links (typescript-eslint#11255)
fix project service links
1 parent 702cea8 commit 4bc7214

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/getting-started/Typed_Linting.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ module.exports = {
8282
In more detail:
8383

8484
- `plugin:@typescript-eslint/recommended-type-checked` is a [shared configuration](../users/Shared_Configurations.mdx). It contains recommended rules that additionally require type information.
85-
- `parserOptions.projectService: true` indicates to ask TypeScript's type checking service for each source file's type information (see [Parser > `projectService`](../packages/Parser.mdx#projectService)).
85+
- `parserOptions.projectService: true` indicates to ask TypeScript's type checking service for each source file's type information (see [Parser > `projectService`](../packages/Parser.mdx#projectservice)).
8686
- `parserOptions.tsconfigRootDir` tells our parser the absolute path of your project's root directory (see [Parser > `tsconfigRootDir`](../packages/Parser.mdx#tsconfigrootdir)).
8787

8888
</TabItem>
@@ -163,5 +163,5 @@ If you're having problems with typed linting, please see our [Troubleshooting FA
163163

164164
For details on the parser options that enable typed linting, see:
165165

166-
- [Parser > `projectService`](../packages/Parser.mdx#projectService): our recommended option, with settings to customize TypeScript project information
167-
- [Parser > `project`](../packages/Parser.mdx#projectService): an older option that can be used as an alternative
166+
- [Parser > `projectService`](../packages/Parser.mdx#projectservice): our recommended option, with settings to customize TypeScript project information
167+
- [Parser > `project`](../packages/Parser.mdx#project): an older option that can be used as an alternative

docs/packages/Parser.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ If this setting is specified, you must only lint files that are included in the
282282
}
283283
```
284284

285-
For an option that allows linting files outside of your TSConfig file(s), see [`projectService`](#projectService).
285+
For an option that allows linting files outside of your TSConfig file(s), see [`projectService`](#projectservice).
286286

287287
<HiddenHeading id="experimental_useprojectservice" />
288288

0 commit comments

Comments
 (0)