From 28227bf99e1d3ed524a85518e1e6183bb2039474 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20=C5=9Ei=C5=9Fmano=C4=9Flu?= Date: Thu, 15 Feb 2024 01:26:48 +0300 Subject: [PATCH] Chore: Update eslint env configuration Remove commonjs from env and set es6 to 'true' --- .eslintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 1d8a9aa..7acc083 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,7 +1,7 @@ { "env": { "node": true, - "commonjs": true + "es6": true }, "extends": "eslint:recommended", "overrides": [],