Index: PRESUBMIT.py |
diff --git a/PRESUBMIT.py b/PRESUBMIT.py |
index 0e89fb2e36ae323acdc1960aa2a1dda8ded2ac0c..cbf19b635e97d866c809229915b8266cca696e76 100644 |
--- a/PRESUBMIT.py |
+++ b/PRESUBMIT.py |
@@ -267,6 +267,7 @@ 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'] |
+ black_list += [r'^recipes/recipes\.py$'] |
Sergiy Byelozyorov
2016/06/07 12:00:00
Why is this needed? Can we fix recipes.py instead?
Paweł Hajdan Jr.
2016/06/07 12:07:18
Other repos also have it. It generates pylint warn
Sergiy Byelozyorov
2016/06/07 13:19:46
We've discussed it offline and Pawel added comment
|
black_list += IgnoredPaths(input_api) |
extra_syspaths = [venv_path] |