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
...
  • Loading branch information
danbev committed Sep 28, 2018
1 parent 03eb253 commit f9f9610
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 @@ -1199,7 +1199,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 f9f9610

Please sign in to comment.