Skip to content

Commit 4c09e7f

Browse files
firedfoxFishrock123
firedfox
authored andcommittedMar 2, 2016
build: remove --quiet from eslint invocation
All eslint rules are configured to report as errors. Remove useless --quiet flag from eslint invocation in Makefile and vcbuild.bat. PR-URL: #5519 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Johan Bergström <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Roman Reiss <[email protected]>
1 parent e3421ac commit 4c09e7f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ bench-idle:
579579

580580
jslint:
581581
$(NODE) tools/eslint/bin/eslint.js lib src test tools/doc tools/eslint-rules \
582-
--rulesdir tools/eslint-rules --quiet
582+
--rulesdir tools/eslint-rules
583583

584584
CPPLINT_EXCLUDE ?=
585585
CPPLINT_EXCLUDE += src/node_lttng.cc

‎vcbuild.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ goto jslint
259259
:jslint
260260
if not defined jslint goto exit
261261
echo running jslint
262-
%config%\node tools\eslint\bin\eslint.js lib src test tools\doc tools\eslint-rules --rulesdir tools\eslint-rules --quiet
262+
%config%\node tools\eslint\bin\eslint.js lib src test tools\doc tools\eslint-rules --rulesdir tools\eslint-rules
263263
goto exit
264264

265265
:create-msvs-files-failed

0 commit comments

Comments
 (0)
Please sign in to comment.