File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -854,10 +854,12 @@ bench: bench-net bench-http bench-fs bench-tls
854854bench-ci : bench
855855
856856jslint :
857+ @echo " Running JS linter..."
857858 $(NODE ) tools/eslint/bin/eslint.js --cache --rulesdir=tools/eslint-rules \
858859 benchmark lib test tools
859860
860861jslint-ci :
862+ @echo " Running JS linter..."
861863 $(NODE ) tools/jslint.js $(PARALLEL_ARGS ) -f tap -o test-eslint.tap \
862864 benchmark lib test tools
863865
@@ -884,12 +886,13 @@ CPPLINT_FILES = $(filter-out $(CPPLINT_EXCLUDE), $(wildcard \
884886 ) )
885887
886888cpplint :
889+ @echo " Running C++ linter..."
887890 @$(PYTHON ) tools/cpplint.py $(CPPLINT_FILES )
888891 @$(PYTHON ) tools/check-imports.py
889892
890893ifneq ("","$(wildcard tools/eslint/lib/eslint.js) ")
891894lint :
892- EXIT_STATUS=0 ; \
895+ @ EXIT_STATUS=0 ; \
893896 $(MAKE ) jslint || EXIT_STATUS=$$? ; \
894897 $(MAKE ) cpplint || EXIT_STATUS=$$? ; \
895898 exit $$ EXIT_STATUS
You can’t perform that action at this time.
0 commit comments