From f9c1a95d55fc15a44387e309bf3c21fae8a4bedc Mon Sep 17 00:00:00 2001
From: vimux <vimux@protonmail.com>
Date: Sun, 28 Oct 2018 11:06:49 -0400
Subject: [PATCH] Update ESLint rules

* Disable `no-unused-vars`, `no-shadow-restricted-names`
---
 .eslintrc | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.eslintrc b/.eslintrc
index 1d1bc90..c091af7 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -2,6 +2,8 @@
   "extends": "airbnb-base/legacy",
   "rules": {
     "indent": [2, "tab"],
-    "no-tabs": 0
+    "no-tabs": 0,
+    "no-unused-vars": 0,
+    "no-shadow-restricted-names": 0
   }
 }