From 4448cec2b6c4334b570b7408e1d91399a273ae41 Mon Sep 17 00:00:00 2001 From: Kevin Partington Date: Fri, 30 Sep 2016 13:07:53 -0500 Subject: [PATCH] Docs: Adding missing ES8 reference to configuring (#7271) * Docs: Adding missing ES8 reference to configuring * Fixup: Incorporating feedback --- 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 1fcb2d904d2..43d0c28f756 100644 --- a/docs/user-guide/configuring.md +++ b/docs/user-guide/configuring.md @@ -15,7 +15,7 @@ All of these options give you fine-grained control over how ESLint treats your c ## Specifying Parser Options -ESLint allows you to specify the JavaScript language options you want to support. By default, ESLint supports only ECMAScript 5 syntax. You can override that setting to enable support for ECMAScript 6 and 7 as well as [JSX](http://facebook.github.io/jsx/) by using parser options. +ESLint allows you to specify the JavaScript language options you want to support. By default, ESLint expects ECMAScript 5 syntax. You can override that setting to enable support for other ECMAScript versions as well as JSX by using parser options. Please note that supporting JSX syntax is not the same as supporting React. React applies specific semantics to JSX syntax that ESLint doesn't recognize. We recommend using [eslint-plugin-react](https://github.com/yannickcr/eslint-plugin-react) if you are using React and want React semantics.