From 6df2c556bda34bd685f4086907ca00cdd7b2ea77 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Tue, 25 Sep 2018 08:51:20 +0200 Subject: 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(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a92371573e..fea678cf45 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 $@ -- cgit v1.2.3