From 3cfdc64735a656b63c885f741fdae8e67ea7dcf9 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Sat, 9 Mar 2019 22:00:09 -0800 Subject: [PATCH] Update to support ecma 8 --- .eslintrc.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 519a48447..d7476db86 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,11 +1,11 @@ { "env": { - "es6": true, - "node": true + "node": true, + "es6": true }, "extends": "eslint:recommended", "parserOptions": { - "ecmaVersion": 2017 + "ecmaVersion": 8 }, "rules": { "indent": [ @@ -26,4 +26,4 @@ ], "no-console": "off" } -} \ No newline at end of file +}