Skip to content

Commit

Permalink
build: add --quiet to lint-cpp
Browse files Browse the repository at this point in the history
This commit adds the --quiet flag to cpplint to avoid informational
output like:
Done processing src/node.cc
...

PR-URL: #23075
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Joyee Cheung <[email protected]>
  • Loading branch information
danbev authored and targos committed Oct 3, 2018
1 parent ef00e5c commit f4cffff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 $@

Expand Down

0 comments on commit f4cffff

Please sign in to comment.