servo: Merge #6174 - Reduce max line length from 150 to 120 characters (from frewsxcv:cleanup-long-lines); r=SimonSapin

Part of https://github.com/servo/servo/issues/6041

Source-Repo: https://github.com/servo/servo
Source-Revision: 542519ebfd073662bc9421ac5fa0aa01ebc0d6fe
This commit is contained in:
Corey Farwell
2015-05-24 18:27:26 -05:00
parent 5a2657c66e
commit 3d43073796
141 changed files with 1161 additions and 497 deletions

View File

@@ -68,7 +68,7 @@ def check_license(contents):
def check_length(idx, line):
if len(line) >= 150:
if len(line) >= 120:
yield (idx + 1, "(much) overlong line")
def check_whatwg_url(idx, line):