Chromium Code Reviews| Index: build/android/PRESUBMIT.py |
| diff --git a/build/android/PRESUBMIT.py b/build/android/PRESUBMIT.py |
| index d8e5ae34bb4e1d4a53f8e67b01c262a653f369af..8561cbd50fb8ccd109d54f126fb0583de7d27ef4 100644 |
| --- a/build/android/PRESUBMIT.py |
| +++ b/build/android/PRESUBMIT.py |
| @@ -38,7 +38,9 @@ def CommonChecks(input_api, output_api): |
| output.extend(input_api.canned_checks.RunPylint( |
| input_api, |
| output_api, |
| - white_list=[r'PRESUBMIT\.py$', r'buildbot/.*\.py$'], |
| + white_list=[r'.*\.py$'], |
| + black_list=[r'pylib/android_commands\.py$'], |
|
frankf
2014/02/03 21:49:30
could you also do this in the code?
jbudorick
2014/02/03 21:53:52
Yes, but ignoring files is kind of the point of th
|
| + disabled_warnings=['F0401'], |
|
frankf
2014/02/03 21:49:30
why disable this?
jbudorick
2014/02/03 21:53:52
It doesn't seem to work correctly.
|
| extra_paths_list=[ |
| J(), J('..', '..', 'third_party', 'android_testrunner'), |
| J('buildbot')])) |