From 96e06e7dcddaba89042e01da1d8317cf7e8ab685 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Thu, 22 Oct 2020 16:44:52 +0530 Subject: [PATCH] Fixes eslint engine issue --- .eslintrc.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 89af53aa3..b35636417 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -24,6 +24,8 @@ "node/prefer-global/url": ["error", "always"], "node/prefer-promises/dns": "error", "node/prefer-promises/fs": "error", - "no-process-exit": [0] + "no-process-exit": [0], + "node/no-unsupported-features/node-builtins": [0], + "node/no-unsupported-features/es-syntax": [0] } }