summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2018-10-02 13:05:19 +0200
committerDaniel Bevenius <daniel.bevenius@gmail.com>2018-10-05 07:18:18 +0200
commitc1cad2f9dfeb65da0d6300c462fd41f87baae1fd (patch)
tree7797f1806d55074855597c455707ab9c26224472 /Makefile
parentfce86849fc448e882c65fa153c701eb6076295f8 (diff)
downloadandroid-node-v8-c1cad2f9dfeb65da0d6300c462fd41f87baae1fd.tar.gz
android-node-v8-c1cad2f9dfeb65da0d6300c462fd41f87baae1fd.tar.bz2
android-node-v8-c1cad2f9dfeb65da0d6300c462fd41f87baae1fd.zip
build: make lint-addon-docs quiet
This commit adds the --quiet flag to cpplint for the lint-addon-docs target to be consistent with the lint-cpp target. PR-URL: https://github.com/nodejs/node/pull/23217 Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c5a6b19da0..be7497e7b3 100644
--- a/Makefile
+++ b/Makefile
@@ -1193,7 +1193,7 @@ tools/.cpplintstamp: $(LINT_CPP_FILES)
lint-addon-docs: test/addons/.docbuildstamp
@echo "Running C++ linter on addon docs..."
- @$(PYTHON) tools/cpplint.py --filter=$(ADDON_DOC_LINT_FLAGS) $(LINT_CPP_ADDON_DOC_FILES_GLOB)
+ @$(PYTHON) tools/cpplint.py --quiet --filter=$(ADDON_DOC_LINT_FLAGS) $(LINT_CPP_ADDON_DOC_FILES_GLOB)
cpplint: lint-cpp
@echo "Please use lint-cpp instead of cpplint"