diff --git a/docs/developer-guide/working-with-custom-parsers.md b/docs/developer-guide/working-with-custom-parsers.md index d6626862d34..a7aa58f5eb7 100644 --- a/docs/developer-guide/working-with-custom-parsers.md +++ b/docs/developer-guide/working-with-custom-parsers.md @@ -9,7 +9,7 @@ If you want to use your own parser and provide additional capabilities for your * `visitorKeys` can be an object to customize AST traversal. The keys of the object are the type of AST nodes. Each value is an array of the property names which should be traversed. Default is [KEYS of `eslint-visitor-keys`](https://github.com/eslint/eslint-visitor-keys#evkkeys). * Support for `visitorKeys` was added in ESLint v4.14.0. ESLint versions which support `visitorKeys` will provide an `eslintVisitorKeys: true` property in `parserOptions`, which can be used for feature detection. -You can find an ESLint parser project [here](https://github.com/eslint/typescript-eslint-parser). +You can find an ESLint parser project [here](https://github.com/typescript-eslint/typescript-eslint). ```json { diff --git a/docs/user-guide/configuring.md b/docs/user-guide/configuring.md index 6fa35ce2ed6..c2400a99c76 100644 --- a/docs/user-guide/configuring.md +++ b/docs/user-guide/configuring.md @@ -81,7 +81,7 @@ The following parsers are compatible with ESLint: * [Esprima](https://www.npmjs.com/package/esprima) * [Babel-ESLint](https://www.npmjs.com/package/babel-eslint) - A wrapper around the [Babel](https://babeljs.io) parser that makes it compatible with ESLint. -* [typescript-eslint-parser(Experimental)](https://www.npmjs.com/package/typescript-eslint-parser) - A parser that converts TypeScript into an ESTree-compatible form so it can be used in ESLint. The goal is to allow TypeScript files to be parsed by ESLint (though not necessarily pass all ESLint rules). +* [@typescript-eslint/parser](https://www.npmjs.com/package/@typescript-eslint/parser) - A parser that converts TypeScript into an ESTree-compatible form so it can be used in ESLint. Note when using a custom parser, the `parserOptions` configuration property is still required for ESLint to work properly with features not in ECMAScript 5 by default. Parsers are all passed `parserOptions` and may or may not use them to determine which features to enable.