Skip to content

chore: fix project service links #11255

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/getting-started/Typed_Linting.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ module.exports = {
In more detail:

- `plugin:@typescript-eslint/recommended-type-checked` is a [shared configuration](../users/Shared_Configurations.mdx). It contains recommended rules that additionally require type information.
- `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)).
- `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)).
- `parserOptions.tsconfigRootDir` tells our parser the absolute path of your project's root directory (see [Parser > `tsconfigRootDir`](../packages/Parser.mdx#tsconfigrootdir)).

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

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

- [Parser > `projectService`](../packages/Parser.mdx#projectService): our recommended option, with settings to customize TypeScript project information
- [Parser > `project`](../packages/Parser.mdx#projectService): an older option that can be used as an alternative
- [Parser > `projectService`](../packages/Parser.mdx#projectservice): our recommended option, with settings to customize TypeScript project information
- [Parser > `project`](../packages/Parser.mdx#project): an older option that can be used as an alternative
2 changes: 1 addition & 1 deletion docs/packages/Parser.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ If this setting is specified, you must only lint files that are included in the
}
```

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

<HiddenHeading id="experimental_useprojectservice" />

Expand Down