Skip to content

Commit 0373836

Browse files
committed
build: silence cpp lint by default
The cpp linter is very noisy at the moment. So use the --quiet flag by default instead of being verbose in this case. PR-URL: #26252 Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 4a10ce6 commit 0373836

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

Makefile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1266,11 +1266,8 @@ else
12661266
@echo "To install (requires internet access) run: $ make format-cpp-build"
12671267
endif
12681268

1269-
ifeq ($(V),1)
1270-
CPPLINT_QUIET =
1271-
else
1272-
CPPLINT_QUIET = --quiet
1273-
endif
1269+
CPPLINT_QUIET = --quiet
1270+
12741271
.PHONY: lint-cpp
12751272
# Lints the C++ code with cpplint.py and check-imports.py.
12761273
lint-cpp: tools/.cpplintstamp

0 commit comments

Comments
 (0)