Commit ba654270 authored by Peter Kasting's avatar Peter Kasting Committed by Commit Bot

Make ui/views lint check more aggressive.

This enables all non-blacklisted checks at verbosity 1 and above.  I
locally spot-checked the verbose=0 errors and found them useless
(mostly false complaints about "more than one command on the same line"
for lambdas), so not going down that far.

This should prevent regressing on any of the failures I've fixed.

Bug: none
Change-Id: Ia5db45e7e372a6147d58f463bbc47c81e00aac5e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2126254
Commit-Queue: Peter Kasting <pkasting@chromium.org>
Reviewed-by: default avatarRobert Liao <robliao@chromium.org>
Cr-Commit-Position: refs/heads/master@{#754693}
parent c01f0f2b
......@@ -19,7 +19,7 @@ def CheckChangeLintsClean(input_api, output_api):
x, white_list=INCLUDE_CPP_FILES_ONLY,
black_list=input_api.DEFAULT_BLACK_LIST)
return input_api.canned_checks.CheckChangeLintsClean(
input_api, output_api, sources)
input_api, output_api, sources, lint_filters=[], verbose_level=1)
def CheckChange(input_api, output_api):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment