From 69227673ccf86219a76a1ff44c4da891b5adb7fe Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 29 Sep 2016 20:58:42 +0100 Subject: [PATCH 1/2] docs: Update built-in support notes in README eslint v3.6.0 supports ES2017 features --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1f6e3e35..5825f41e 100644 --- a/README.md +++ b/README.md @@ -4,15 +4,15 @@ **babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint). -#### Note: You don't need to use babel-eslint if you are only using ES6/ES2015. ESLint actually supports ES6/ES7, JSX, and object rest/spread by default now. +#### Note: You don't need to use babel-eslint if you are using ES2015 (ES6), ES2016 (ES7) or ES2017 (ES8). ESLint actually supports ES2015/ES2016/ES2017, JSX, and object rest/spread by default now. -##### At the moment, you'll need it if you use stuff like class properties, decorators, async/await, types. +##### At the moment, you'll need it if you use stuff like class properties, decorators, types. > If there is an issue, first check if it can be reproduced with the regular parser or with the latest versions of `eslint` and `babel-eslint`! For questions and support please visit the [`#linting`](https://babeljs.slack.com/messages/linting/) babel slack channel (sign up [here](https://babel-slack.herokuapp.com))! -> Note that the `ecmaFeatures` config property may still be required for ESLint to work properly with features not in ECMAScript 5 by default. Examples are `globalReturn` and `modules`) +> Note that the `ecmaFeatures` config property may still be required for ESLint to work properly with features not in ECMAScript 5 by default. Examples are `globalReturn`, `modules` and async/await). ## Known Issues From 8a921e1e19d8f120b0e7177624e8c52dec709d76 Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 29 Sep 2016 21:06:43 +0100 Subject: [PATCH 2/2] docs: Update built-in support notes in README eslint v3.6.0 supports ES2017 features --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5825f41e..a26f0baf 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ For questions and support please visit the [`#linting`](https://babeljs.slack.com/messages/linting/) babel slack channel (sign up [here](https://babel-slack.herokuapp.com))! -> Note that the `ecmaFeatures` config property may still be required for ESLint to work properly with features not in ECMAScript 5 by default. Examples are `globalReturn`, `modules` and async/await). +> Note that the `ecmaFeatures` config property may still be required for ESLint to work properly with features not in ECMAScript 5 by default. Examples are `globalReturn` and `modules`). ## Known Issues