Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(265)

Unified Diff: PRESUBMIT.py

Issue 2762963002: Make lint errors fatal in presubmit and fix files in whitelisted paths (Closed)
Patch Set: Make lint errors fatal in presubmit Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/api/rtcerror.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: PRESUBMIT.py
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index 72e4326fe4f2e9a3784156695aed3063dcc6a49f..03a77b28681d9df9e72559a4d71c3418159661dc 100755
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -255,9 +255,7 @@ def _CheckApprovedFilesLintClean(input_api, output_api,
if cpplint._cpplint_state.error_count > 0:
if input_api.is_committing:
- # TODO(kjellander): Change back to PresubmitError below when we're
- # confident with the lint settings.
- res_type = output_api.PresubmitPromptWarning
+ res_type = output_api.PresubmitError
else:
res_type = output_api.PresubmitPromptWarning
result = [res_type('Changelist failed cpplint.py check.')]
« no previous file with comments | « no previous file | webrtc/api/rtcerror.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698