From 8ae185f7ffc8feece0b5e51448220b2b943a6f3c Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Thu, 7 Mar 2019 10:07:10 +0530 Subject: [PATCH] chore: Set ecmaVersion = 8 in eslintrc to allow async await syntax --- .eslintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index d7aa0f2e61..77bc68ee85 100644 --- a/.eslintrc +++ b/.eslintrc @@ -5,7 +5,7 @@ "es6": true }, "parserOptions": { - "ecmaVersion": 6, + "ecmaVersion": 8, "sourceType": "module" }, "extends": "eslint:recommended",