Skip to content

Commit 4c09e7f

Browse files
firedfoxFishrock123
authored andcommitted
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 <rtrott@gmail.com> Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
1 parent e3421ac commit 4c09e7f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)