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 <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
This commit is contained in:
Daniel Bevenius 2018-09-25 08:51:20 +02:00 committed by Michaël Zasso
parent ef00e5c967
commit f4cffffc96
No known key found for this signature in database
GPG Key ID: 770F7A9A5AE15600

View File

@ -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 $@