Chromium Code Reviews| Index: PRESUBMIT.py |
| diff --git a/PRESUBMIT.py b/PRESUBMIT.py |
| index 326caad1e8a1fbd915a158ba127ceca2cf6640ff..df2b5737b834d7a932f6177e76024dce9b14031a 100644 |
| --- a/PRESUBMIT.py |
| +++ b/PRESUBMIT.py |
| @@ -85,6 +85,7 @@ def _PythonChecks(input_api, output_api): |
| 'R0201', # Method could be a function. |
| 'E1003', # Using class name in super. |
| 'W0613', # Unused argument. |
| + 'W0105', # String statement has no effect. |
|
rmistry
2016/02/18 15:29:21
Out of curiosity, where did you run into this?
borenet
2016/02/18 15:40:56
All of the module and function level docstrings tr
|
| ) |
| # Run Pylint on only the modified python files. Unfortunately it still runs |
| # Pylint on the whole file instead of just the modified lines. |