From 09829bf04389d1e76b04807a072d474ca0de13ef Mon Sep 17 00:00:00 2001 From: "thakis@chromium.org" Date: Sat, 2 Oct 2010 01:58:17 +0000 Subject: [PATCH] Make presubmit output less annoying for mac people. Review URL: http://codereview.chromium.org/3521006 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@61277 0039d316-1c4b-4281-b951-d872f2087c98 --- presubmit_canned_checks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/presubmit_canned_checks.py b/presubmit_canned_checks.py index e6ae9d69e..a5b28f1e0 100644 --- a/presubmit_canned_checks.py +++ b/presubmit_canned_checks.py @@ -258,6 +258,7 @@ def CheckLongLines(input_api, output_api, maxlen=80, source_file_filter=None): not 'https://' in line and not line.startswith('#define') and not line.startswith('#include') and + not line.startswith('#import') and not line.startswith('#pragma') and not line.startswith('#if') and not line.startswith('#endif')):