Skip to content

Commit d696ea2

Browse files
authored
docs(eslint-plugin): fix several 404 URLs (#9064)
1 parent 37a41d9 commit d696ea2

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

packages/eslint-plugin/docs/rules/consistent-type-imports.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,5 +132,5 @@ We recommend picking a single option for this rule that works best for your proj
132132
## Related To
133133

134134
- [`no-import-type-side-effects`](./no-import-type-side-effects.mdx)
135-
- [`import/consistent-type-specifier-style`](https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/consistent-type-specifier-style.mdx)
135+
- [`import/consistent-type-specifier-style`](https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/consistent-type-specifier-style.md)
136136
- [`import/no-duplicates` with `{"prefer-inline": true}`](https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-duplicates.md#inline-type-imports)

packages/eslint-plugin/docs/rules/lines-between-class-members.mdx

-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ In addition to the options supported by the `lines-between-class-members` rule i
2121
- `"exceptAfterOverload": true` (default) - Skip checking empty lines after overload class members
2222
- `"exceptAfterOverload": false` - **do not** skip checking empty lines after overload class members
2323

24-
- [See the other options allowed](https://github.com/eslint/eslint/blob/main/docs/rules/lines-between-class-members.md#options)
25-
2624
### `exceptAfterOverload: true`
2725

2826
Examples of **correct** code for the `{ "exceptAfterOverload": true }` option:

packages/eslint-plugin/docs/rules/no-import-type-side-effects.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,5 +76,5 @@ If you're not using TypeScript 5.0's `verbatimModuleSyntax` option and your proj
7676
## Related To
7777

7878
- [`consistent-type-imports`](./consistent-type-imports.mdx)
79-
- [`import/consistent-type-specifier-style`](https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/consistent-type-specifier-style.mdx)
79+
- [`import/consistent-type-specifier-style`](https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/consistent-type-specifier-style.md)
8080
- [`import/no-duplicates` with `{"prefer-inline": true}`](https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-duplicates.md#inline-type-imports)

packages/eslint-plugin/docs/rules/unbound-method.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Otherwise, passing class methods around as values can remove type safety by fail
1616
This rule reports when a class method is referenced in an unbound manner.
1717

1818
:::note Tip
19-
If you're working with `jest`, you can use [`eslint-plugin-jest`'s version of this rule](https://github.com/jest-community/eslint-plugin-jest/blob/main/docs/rules/unbound-method.mdx) to lint your test files, which knows when it's ok to pass an unbound method to `expect` calls.
19+
If you're working with `jest`, you can use [`eslint-plugin-jest`'s version of this rule](https://github.com/jest-community/eslint-plugin-jest/blob/main/docs/rules/unbound-method.md) to lint your test files, which knows when it's ok to pass an unbound method to `expect` calls.
2020
:::
2121

2222
## Examples

0 commit comments

Comments
 (0)