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:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user