Skip to content

Commit

Permalink
docs: update links to eslint-visitor-keys repo (#621)
Browse files Browse the repository at this point in the history
  • Loading branch information
fasttime committed Aug 20, 2024
1 parent 5903929 commit 8ebc453
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/eslint-scope/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ In order to analyze scope, you'll need to have an [ESTree](https://github.com/es
* `impliedStrict` (default: `false`) - Set to `true` to evaluate the code in strict mode even outside of modules and without `"use strict"`.
* `ecmaVersion` (default: `5`) - The version of ECMAScript to use to evaluate the code.
* `sourceType` (default: `"script"`) - The type of JavaScript file to evaluate. Change to `"module"` for ECMAScript module code.
* `childVisitorKeys` (default: `null`) - An object with visitor key information (like [`eslint-visitor-keys`](https://github.com/eslint/eslint-visitor-keys)). Without this, `eslint-scope` finds child nodes to visit algorithmically. Providing this option is a performance enhancement.
* `childVisitorKeys` (default: `null`) - An object with visitor key information (like [`eslint-visitor-keys`](https://github.com/eslint/js/tree/main/packages/eslint-visitor-keys)). Without this, `eslint-scope` finds child nodes to visit algorithmically. Providing this option is a performance enhancement.
* `fallback` (default: `"iteration"`) - The strategy to use when `childVisitorKeys` is not specified. May be a function.

Example:
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-visitor-keys/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ console.log(evk.unionWith({

## 📰 Change log

See [GitHub releases](https://github.com/eslint/eslint-visitor-keys/releases).
See [GitHub releases](https://github.com/eslint/js/releases).

## 🍻 Contributing

Expand Down
2 changes: 1 addition & 1 deletion packages/espree/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Returns the current `espree` version

### `VisitorKeys`

Returns all visitor keys for traversing the AST from [eslint-visitor-keys](https://github.com/eslint/eslint-visitor-keys)
Returns all visitor keys for traversing the AST from [eslint-visitor-keys](https://github.com/eslint/js/tree/main/packages/eslint-visitor-keys)

### `latestEcmaVersion`

Expand Down
2 changes: 1 addition & 1 deletion packages/espree/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Returns the current `espree` version

### `VisitorKeys`

Returns all visitor keys for traversing the AST from [eslint-visitor-keys](https://github.com/eslint/eslint-visitor-keys)
Returns all visitor keys for traversing the AST from [eslint-visitor-keys](https://github.com/eslint/js/tree/main/packages/eslint-visitor-keys)

### `latestEcmaVersion`

Expand Down

0 comments on commit 8ebc453

Please sign in to comment.