From e1c40b2792aff8c32c603ea8607115b5b2ef49dd Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Thu, 1 Oct 2020 14:13:19 -0400 Subject: [PATCH] style: allowing some es6 features client-side --- public/.eslintrc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/public/.eslintrc b/public/.eslintrc index 2808ade27d..606f50bebb 100644 --- a/public/.eslintrc +++ b/public/.eslintrc @@ -33,10 +33,8 @@ "parserOptions": { "ecmaVersion": 6, "ecmaFeatures": { - "arrowFunctions": true, "classes": false, "defaultParams": false, - "destructuring": false, "experimentalObjectRestSpread": false, "blockBindings": false, "forOf": false, @@ -50,9 +48,7 @@ "objectLiteralShorthandProperties": false, "impliedStrict": false, "restParams": false, - "spread": false, - "superInFunctions": false, - "templateStrings": false + "superInFunctions": false } } }