From 96569b19a8a0ac2dfc7e036f718df6d9d66a022d Mon Sep 17 00:00:00 2001 From: Neil Kistner Date: Wed, 15 Mar 2017 13:40:28 -0500 Subject: [PATCH] Remove `id-blacklist` rule and use AirBnb's setting --- rules/best-practices.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/rules/best-practices.js b/rules/best-practices.js index 3eaf5ab..e1fbbfd 100644 --- a/rules/best-practices.js +++ b/rules/best-practices.js @@ -3,15 +3,6 @@ module.exports = { // require the use of === and !== // http://eslint.org/docs/rules/eqeqeq eqeqeq: 'error', - // Blacklist certain identifiers to prevent them being used - // http://eslint.org/docs/rules/id-blacklist - 'id-blacklist': [ 'error', - 'callback', - 'cb', - 'data', - 'e', - 'err', - ], // disallow unmodified conditions of loops // http://eslint.org/docs/rules/no-unmodified-loop-condition 'no-unmodified-loop-condition': 'error',