From fa8110a60e891cf8f81c2a3236cf7eebfe11df9f Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Thu, 21 Feb 2019 21:57:07 +0100 Subject: [PATCH] build: silence cpp lint by default The cpp linter is very noisy at the moment. So use the --quiet flag by default instead of being verbose in this case. PR-URL: https://github.com/nodejs/node/pull/26252 Reviewed-By: Daniel Bevenius Reviewed-By: James M Snell --- Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 3d8ef4dc5764bb..dd18ebdcacc2f7 100644 --- a/Makefile +++ b/Makefile @@ -1266,11 +1266,8 @@ else @echo "To install (requires internet access) run: $ make format-cpp-build" endif -ifeq ($(V),1) - CPPLINT_QUIET = -else - CPPLINT_QUIET = --quiet -endif +CPPLINT_QUIET = --quiet + .PHONY: lint-cpp # Lints the C++ code with cpplint.py and check-imports.py. lint-cpp: tools/.cpplintstamp