From f1322757efb481851f5f33e1bc5c528eaa1dcd2f Mon Sep 17 00:00:00 2001 From: MaxGenash Date: Tue, 4 Aug 2020 18:40:42 +0300 Subject: [PATCH] refactor(.eslintrc): update .eslinrc to allow newer JS syntax --- .eslintrc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.eslintrc b/.eslintrc index fa6232d8..ed06396c 100644 --- a/.eslintrc +++ b/.eslintrc @@ -1,18 +1,14 @@ { "parserOptions": { - "ecmaVersion": 8, "sourceType": "module", "ecmaFeatures": { "impliedStrict": true } }, "env": { - "es6": true, + "es2020": true, "node": true }, - "globals": { - "Set": true - }, "rules": { "curly": 2, "no-eq-null": 2,