From c9aeab21a71c6743f51163b7a8fdf4f0cbfcdbde Mon Sep 17 00:00:00 2001 From: Milos Djermanovic Date: Sun, 29 Sep 2019 05:15:01 +0200 Subject: [PATCH] Docs: Add supported ECMAScript version to README (#12290) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9695472000b..c553cc810cb 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ Yes, ESLint natively supports parsing JSX syntax (this must be enabled in [confi ### What ECMAScript versions does ESLint support? -ESLint has full support for ECMAScript 3, 5 (default), 2015, 2016, 2017, and 2018. You can set your desired ECMAScript syntax (and other settings, like global variables or your target environments) through [configuration](https://eslint.org/docs/user-guide/configuring). +ESLint has full support for ECMAScript 3, 5 (default), 2015, 2016, 2017, 2018, and 2019. You can set your desired ECMAScript syntax (and other settings, like global variables or your target environments) through [configuration](https://eslint.org/docs/user-guide/configuring). ### What about experimental features?