From f4cffffc960d6a002ca0f5bc808a7ab8aee7fa54 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Tue, 25 Sep 2018 08:51:20 +0200 Subject: [PATCH] build: add --quiet to lint-cpp This commit adds the --quiet flag to cpplint to avoid informational output like: Done processing src/node.cc ... PR-URL: https://github.com/nodejs/node/pull/23075 Reviewed-By: James M Snell Reviewed-By: Luigi Pinca Reviewed-By: Joyee Cheung --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a92371573e0c9e..fea678cf45f134 100644 --- a/Makefile +++ b/Makefile @@ -1193,7 +1193,7 @@ lint-cpp: tools/.cpplintstamp tools/.cpplintstamp: $(LINT_CPP_FILES) @echo "Running C++ linter..." - @$(PYTHON) tools/cpplint.py $? + @$(PYTHON) tools/cpplint.py --quiet $? @$(PYTHON) tools/check-imports.py @touch $@