aboutsummaryrefslogtreecommitdiffhomepage
path: root/PRESUBMIT.py
diff options
context:
space:
mode:
authorGravatar borenet <borenet@google.com>2016-02-18 08:05:48 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-02-18 08:05:48 -0800
commitd9fa758292462c4200231f49286aa97750f5e689 (patch)
treea8c8b7cd785c4254d522f3b2900af92fe1147e9c /PRESUBMIT.py
parente1fce93f36d7b73df9942135dc5a342b629e6b3a (diff)
Port Skia recipe to normal Python scripts, move to Skia repo
Diffstat (limited to 'PRESUBMIT.py')
-rw-r--r--PRESUBMIT.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index 326caad1e8..df2b5737b8 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.
)
# Run Pylint on only the modified python files. Unfortunately it still runs
# Pylint on the whole file instead of just the modified lines.