Index: PRESUBMIT.py |
diff --git a/PRESUBMIT.py b/PRESUBMIT.py |
index 0e89fb2e36ae323acdc1960aa2a1dda8ded2ac0c..8f123c31540782612030ca3a379147591e679c7f 100644 |
--- a/PRESUBMIT.py |
+++ b/PRESUBMIT.py |
@@ -267,6 +267,8 @@ def PylintChecks(input_api, output_api): # pragma: no cover |
black_list = list(input_api.DEFAULT_BLACK_LIST) |
black_list += DISABLED_PROJECTS |
black_list += ['.*\.pyc$', '.*_pb2\.py'] |
+ # TODO(phajdan.jr): pylint recipes-py code (http://crbug.com/617939). |
+ black_list += [r'^recipes/recipes\.py$'] |
black_list += IgnoredPaths(input_api) |
extra_syspaths = [venv_path] |