From 4990ddad72ff43492155c3064030603517b6e070 Mon Sep 17 00:00:00 2001 From: firedfox Date: Wed, 2 Mar 2016 11:55:53 +0800 Subject: [PATCH] build: remove --quiet from eslint invocation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All eslint rules are configured to report as errors. Remove useless --quiet flag from eslint invocation in Makefile and vcbuild.bat. PR-URL: https://github.com/nodejs/node/pull/5519 Reviewed-By: Rich Trott Reviewed-By: Michaël Zasso Reviewed-By: Johan Bergström Reviewed-By: Colin Ihrig Reviewed-By: Roman Reiss --- Makefile | 2 +- vcbuild.bat | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 65a399b063..d638304c7a 100644 --- a/Makefile +++ b/Makefile @@ -514,7 +514,7 @@ bench-idle: jslint: $(NODE) tools/eslint/bin/eslint.js lib src test tools/doc tools/eslint-rules \ - --rulesdir tools/eslint-rules --quiet + --rulesdir tools/eslint-rules CPPLINT_EXCLUDE ?= CPPLINT_EXCLUDE += src/node_lttng.cc diff --git a/vcbuild.bat b/vcbuild.bat index 425157f127..1a6a0e45c6 100644 --- a/vcbuild.bat +++ b/vcbuild.bat @@ -258,7 +258,7 @@ goto jslint :jslint if not defined jslint goto exit echo running jslint -%config%\node tools\eslint\bin\eslint.js lib src test tools\doc tools\eslint-rules --rulesdir tools\eslint-rules --quiet +%config%\node tools\eslint\bin\eslint.js lib src test tools\doc tools\eslint-rules --rulesdir tools\eslint-rules goto exit :create-msvs-files-failed