From a8331fa4e2382ed1f53a4c9cca43f8e11724ae48 Mon Sep 17 00:00:00 2001 From: shisama Date: Wed, 6 Mar 2019 12:21:50 +0900 Subject: [PATCH] tools: add no-var lint rule for tools directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/26398 Reviewed-By: Richard Lau Reviewed-By: Colin Ihrig Reviewed-By: Refael Ackermann Reviewed-By: Сковорода Никита Андреевич Reviewed-By: Ruben Bridgewater --- tools/.eslintrc.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/.eslintrc.yaml b/tools/.eslintrc.yaml index 740056235cb01b..ea518d2afb83ad 100644 --- a/tools/.eslintrc.yaml +++ b/tools/.eslintrc.yaml @@ -7,3 +7,4 @@ rules: exports: 'only-multiline' no-unused-vars: [error, { args: 'after-used' }] prefer-arrow-callback: error + no-var: error