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
854
854
bench-ci : bench
855
855
856
856
jslint :
857
+ @echo " Running JS linter..."
857
858
$(NODE ) tools/eslint/bin/eslint.js --cache --rulesdir=tools/eslint-rules \
858
859
benchmark lib test tools
859
860
860
861
jslint-ci :
862
+ @echo " Running JS linter..."
861
863
$(NODE ) tools/jslint.js $(PARALLEL_ARGS ) -f tap -o test-eslint.tap \
862
864
benchmark lib test tools
863
865
@@ -884,12 +886,13 @@ CPPLINT_FILES = $(filter-out $(CPPLINT_EXCLUDE), $(wildcard \
884
886
) )
885
887
886
888
cpplint :
889
+ @echo " Running C++ linter..."
887
890
@$(PYTHON ) tools/cpplint.py $(CPPLINT_FILES )
888
891
@$(PYTHON ) tools/check-imports.py
889
892
890
893
ifneq ("","$(wildcard tools/eslint/lib/eslint.js) ")
891
894
lint :
892
- EXIT_STATUS=0 ; \
895
+ @ EXIT_STATUS=0 ; \
893
896
$(MAKE ) jslint || EXIT_STATUS=$$? ; \
894
897
$(MAKE ) cpplint || EXIT_STATUS=$$? ; \
895
898
exit $$ EXIT_STATUS
You can’t perform that action at this time.
0 commit comments