diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-05 16:14:55 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-05 16:14:55 +0000 |
commit | b4971ce964508e952bb501912de3c697cfffb76a (patch) | |
tree | 2768d8440ea7d23d3f3ce5864f80b9af2b8e3f36 /PRESUBMIT.py | |
parent | fcbe58fbd0a5c1d479c247972953f01575825cac (diff) | |
download | chromium_src-b4971ce964508e952bb501912de3c697cfffb76a.zip chromium_src-b4971ce964508e952bb501912de3c697cfffb76a.tar.gz chromium_src-b4971ce964508e952bb501912de3c697cfffb76a.tar.bz2 |
Temporarily disable max_cols=80 rule since there's too many source files that trigger this rule at the moment.
Review URL: http://codereview.chromium.org/39192
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10992 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'PRESUBMIT.py')
-rwxr-xr-x | PRESUBMIT.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py index e0bd7de..1b33adf 100755 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -42,11 +42,15 @@ _ReadFile = ReadFile def CheckChangeOnUpload(input_api, output_api): - return LocalChecks(input_api, output_api) + # TODO(maruel): max_cols is temporarily disabled. Reenable once the source + # tree is in better shape. + return LocalChecks(input_api, output_api, max_cols=0) def CheckChangeOnCommit(input_api, output_api): - return (LocalChecks(input_api, output_api) + + # TODO(maruel): max_cols is temporarily disabled. Reenable once the source + # tree is in better shape. + return (LocalChecks(input_api, output_api, max_cols=0) + input_api.canned_checks.CheckDoNotSubmit(input_api, output_api)) |