From 1eec4dd1da972122a9e97e22e0a8aa523dfdf607 Mon Sep 17 00:00:00 2001 From: Refael Ackermann Date: Sat, 21 Oct 2017 18:04:37 -0400 Subject: [PATCH] tools: no trailing slash in ignore patterns Makes eslint exclude directories without enumerating their content PR-URL: https://github.com/nodejs/node/pull/16372 Refs: https://github.com/nodejs/node/pull/16010 Refs: https://github.com/nodejs/node/issues/16278 Reviewed-By: Rich Trott Reviewed-By: Joyee Cheung Reviewed-By: Luigi Pinca Reviewed-By: Gibson Fahnestock Reviewed-By: James M Snell --- .eslintignore | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.eslintignore b/.eslintignore index a681716c66..023979a515 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,10 +1,10 @@ lib/internal/v8_prof_polyfill.js lib/punycode.js -test/addons/??_*/ +test/addons/??_* test/fixtures -test/tmp*/ +test/tmp* tools/eslint tools/icu node_modules -benchmark/tmp/ +benchmark/tmp doc/**/*.js