From 8832be41880ba8147f45d831590303c8c18d1c4c Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Fri, 1 Apr 2016 21:52:55 -0700 Subject: [PATCH] tools: remove disabling of already-disabled rule `require-buffer` is only enabled in the `lib` directory. There is no need to disable it in `test`. PR-URL: https://github.com/nodejs/node/pull/6013 Reviewed-By: Ben Noordhuis Reviewed-By: James M Snell Reviewed-By: Colin Ihrig --- test/.eslintrc | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/.eslintrc b/test/.eslintrc index 5d77a660f8..68b358740f 100644 --- a/test/.eslintrc +++ b/test/.eslintrc @@ -3,8 +3,6 @@ rules: ## allow undeclared variables no-undef: 0 - ## allow global Buffer usage - require-buffer: 0 ## common module is mandatory in tests required-modules: [2, "common"]