From 26ad8c627e1ef15fbac0774f3fc3f839667693dc Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 4 Jul 2018 08:35:39 -0700 Subject: [PATCH] Deny unused variables in eslintrc --- .eslintrc.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 91075bfb..7839f6bf 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -24,7 +24,6 @@ module.exports = { 'always' ], 'no-console': 0, - 'no-undef': 'warn', - 'no-unused-vars': 'warn' + 'no-undef': 'warn' } };