chiark / gitweb /
lint can no longer properly detect unset Summary/Description
[fdroidserver.git] / fdroidserver / lint.py
index 9aebd9981c8b59d3fb7eca9ebf19743c8548aa29..3ffdf5e31b30792b4a202c2c113b490b03d8003e 100644 (file)
@@ -88,8 +88,6 @@ regex_checks = {
          "Unnecessary trailing space"),
     ],
     'Summary': [
-        (re.compile(r'^$'),
-         "Summary yet to be filled"),
         (re.compile(r'.*\b(free software|open source)\b.*', re.IGNORECASE),
          "No need to specify that the app is Free Software"),
         (re.compile(r'.*((your|for).*android|android.*(app|device|client|port|version))', re.IGNORECASE),
@@ -102,8 +100,6 @@ regex_checks = {
          "Unnecessary trailing space"),
     ],
     'Description': [
-        (re.compile(r'^No description available$'),
-         "Description yet to be filled"),
         (re.compile(r'\s*[*#][^ .]'),
          "Invalid bulleted list"),
         (re.compile(r'^\s'),