From 0141940a44df86ef377f1fffcb28955048383567 Mon Sep 17 00:00:00 2001 From: klkhan Date: Wed, 9 Sep 2020 22:25:07 +0500 Subject: [PATCH 1/2] Update config --- docs/user-guide/configuring.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/configuring.md b/docs/user-guide/configuring.md index ff371b7592c..dbd87304296 100644 --- a/docs/user-guide/configuring.md +++ b/docs/user-guide/configuring.md @@ -73,7 +73,7 @@ To indicate the npm module to use as your parser, specify it using the `parser` 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. +* [@babel/eslint-parser](https://www.npmjs.com/package/@babel/eslint-parser) - A wrapper around the [Babel](https://babeljs.io) parser that makes it compatible with ESLint. * [@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. From ff8294268f5f531efd5c31662b80cd99c6ff2086 Mon Sep 17 00:00:00 2001 From: klkhan Date: Wed, 9 Sep 2020 22:25:07 +0500 Subject: [PATCH 2/2] Docs: update outdated link --- docs/user-guide/configuring.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/configuring.md b/docs/user-guide/configuring.md index ff371b7592c..dbd87304296 100644 --- a/docs/user-guide/configuring.md +++ b/docs/user-guide/configuring.md @@ -73,7 +73,7 @@ To indicate the npm module to use as your parser, specify it using the `parser` 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. +* [@babel/eslint-parser](https://www.npmjs.com/package/@babel/eslint-parser) - A wrapper around the [Babel](https://babeljs.io) parser that makes it compatible with ESLint. * [@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.