Important
Active development for this project has moved to https://github.com/eslint/js. Please open issues/PRs there.
Constants and utilities about visitor keys to traverse AST.
Use npm to install.
$ npm install eslint-visitor-keys- Node.js
^18.18.0,^20.9.0, or>=21.1.0
To use in an ESM file:
import * as evk from "eslint-visitor-keys"To use in a CommonJS file:
const evk = require("eslint-visitor-keys")type:
{ [type: string]: string[] | undefined }
Visitor keys. This keys are frozen.
This is an object. Keys are the type of ESTree nodes. Their values are an array of property names which have child nodes.
For example:
console.log(evk.KEYS.AssignmentExpression) // β ["left", "right"]
type:
(node: object) => string[]
Get the visitor keys of a given AST node.
This is similar to Object.keys(node) of ES Standard, but some keys are excluded: parent, leadingComments, trailingComments, and names which start with _.
This will be used to traverse unknown nodes.
For example:
const node = {
type: "AssignmentExpression",
left: { type: "Identifier", name: "foo" },
right: { type: "Literal", value: 0 }
}
console.log(evk.getKeys(node)) // β ["type", "left", "right"]type:
(additionalKeys: object) => { [type: string]: string[] | undefined }
Make the union set with evk.KEYS and the given keys.
- The order of keys is,
additionalKeysis at first, thenevk.KEYSis concatenated after that. - It removes duplicated keys as keeping the first one.
For example:
console.log(evk.unionWith({
MethodDefinition: ["decorators"]
})) // β { ..., MethodDefinition: ["decorators", "key", "value"], ... }See GitHub releases.
Welcome. See ESLint contribution guidelines.
npm testruns tests and measures code coverage.npm run lintchecks source codes with ESLint.npm run test:open-coverageopens the code coverage report of the previous test with your default browser.