From: Daniel Martí Date: Sat, 12 Sep 2015 04:53:27 +0000 (-0700) Subject: lint: remove now obsolete description checks X-Git-Tag: 0.5.0~109 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=e6b14c8995c918da3c53e60c3e8e07bb7e181e43;p=fdroidserver.git lint: remove now obsolete description checks --- diff --git a/fdroidserver/lint.py b/fdroidserver/lint.py index 526c1b33..3524c728 100644 --- a/fdroidserver/lint.py +++ b/fdroidserver/lint.py @@ -255,18 +255,6 @@ def check_duplicates(app): seenlines.add(l) -def check_text_wrap(app): - maxcols = 140 - for l in app['Description']: - if any(l.startswith(c) for c in ['*', '#']): - continue - if any(len(w) > maxcols for w in l.split(' ')): - continue - if len(l) > maxcols: - yield "Description should be wrapped to 80-120 chars" - break - - def check_mediawiki_links(app): for l in app['Description']: for um in desc_url.finditer(l): @@ -276,13 +264,6 @@ def check_mediawiki_links(app): yield "URL '%s' in Description: %s" % (url, r) -def check_extra_spacing(app): - desc = app['Description'] - if (not desc[0] or not desc[-1] - or any(not desc[l - 1] and not desc[l] for l in range(1, len(desc)))): - yield "Description has an extra empty line" - - def check_bulleted_lists(app): validchars = ['*', '#'] lchar = '' @@ -352,9 +333,7 @@ def main(): check_empty_fields, check_categories, check_duplicates, - check_text_wrap, check_mediawiki_links, - check_extra_spacing, check_bulleted_lists, check_builds, ]: