Skip to content
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
2 changes: 1 addition & 1 deletion docs/maintenance/Pull_Requests.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ If there's no backing issue:
- Parenthesis and whitespace (see: `getWrappingFixer`).
- Unions and intersections (see: `unionConstituents` and `intersectionConstituents`).
- Unit tests:
- All lines are covered per the Codecov / `yarn jest path/to/impacted/file --coverage` report.
- All lines are covered per the Codecov / `pnpx jest path/to/impacted/file --coverage` report.
- Both "positive" and "negative" ("valid" and "invalid") cases exist, if reasonably possible to test for.
- Fixes and suggestions, if present, don't remove `//` or `/*` comments
- `invalid` lint rule errors include line and column information
Expand Down
2 changes: 1 addition & 1 deletion docs/troubleshooting/faqs/TypeScript.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import TabItem from '@theme/TabItem';
## Should TypeScript be installed globally or locally?

Make sure that you have installed TypeScript locally i.e. by using `npm install typescript`, not `npm install -g typescript`,
or by using `yarn add typescript`, not `yarn global add typescript`.
or by using `pnpm add typescript`, not `pnpm add -g add typescript`.
See [#2041](https://github.com/typescript-eslint/typescript-eslint/issues/2041) for more information.

## Why don't I see TypeScript errors in my ESLint output?
Expand Down