chiark / gitweb /
lint: remove now obsolete description checks
authorDaniel Martí <mvdan@mvdan.cc>
Sat, 12 Sep 2015 04:53:27 +0000 (21:53 -0700)
committerDaniel Martí <mvdan@mvdan.cc>
Sat, 12 Sep 2015 04:54:39 +0000 (21:54 -0700)
fdroidserver/lint.py

index 526c1b33471e8ebc25fa453ce0bef20a9b1e0f4f..3524c728f61ae41128a1c6cced77895b7c7cb0a0 100644 (file)
@@ -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,
                 ]: