From b2e27a02b456985642506fb5773ef48392970262 Mon Sep 17 00:00:00 2001 From: Refael Ackermann Date: Thu, 28 Feb 2019 13:00:33 -0500 Subject: [PATCH] Revert "build: silence cpp lint by default" This reverts commit 0373836b390999644d116c96b41ba05a8a0f181a. PR-URL: https://github.com/nodejs/node/pull/26358 Reviewed-By: Richard Lau Reviewed-By: Colin Ihrig --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index dd18ebdcacc2f7..3d8ef4dc5764bb 100644 --- a/Makefile +++ b/Makefile @@ -1266,8 +1266,11 @@ else @echo "To install (requires internet access) run: $ make format-cpp-build" endif -CPPLINT_QUIET = --quiet - +ifeq ($(V),1) + CPPLINT_QUIET = +else + CPPLINT_QUIET = --quiet +endif .PHONY: lint-cpp # Lints the C++ code with cpplint.py and check-imports.py. lint-cpp: tools/.cpplintstamp