Chromium Code Reviews| Index: PRESUBMIT.py |
| diff --git a/PRESUBMIT.py b/PRESUBMIT.py |
| index ce91a4383343b14bdfbf264eb72a845c9ffd2988..004e59acbc355f64a1fb0f83a0caac5ef99a85a0 100644 |
| --- a/PRESUBMIT.py |
| +++ b/PRESUBMIT.py |
| @@ -1413,6 +1413,9 @@ def _CheckParseErrors(input_api, output_api): |
| excluded_patterns = [ |
| r'test[\\\/]data[\\\/]', |
| r'^components[\\\/]policy[\\\/]resources[\\\/]policy_templates\.json$', |
| + # Contains valid JSON but is excluded for performance reasons. The |
| + # well-formedness of this file is checked during the build. |
| + r'^net[\\\/]http[\\\/]transport_security_state_static\.json$', |
|
Dirk Pranke
2017/04/10 19:34:27
Seems like we should fix the comment eater instead
martijnc
2017/04/11 20:18:13
I've updated the CL to fix the performance issue i
|
| ] |
| # Most JSON files are preprocessed and support comments, but these do not. |
| json_no_comments_patterns = [ |