From: Daniel Martí Date: Fri, 16 May 2014 11:04:31 +0000 (+0200) Subject: lint: warn about empty descriptions X-Git-Tag: 0.2~75 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=a36865e9b15824892f217b3a05c99fe77cbfd4fd;p=fdroidserver.git lint: warn about empty descriptions If some app has the default description because it's not going to be published or will never have a working build, the whole app should be disabled. --- diff --git a/fdroidserver/lint.py b/fdroidserver/lint.py index 1f16426e..261a2017 100644 --- a/fdroidserver/lint.py +++ b/fdroidserver/lint.py @@ -74,6 +74,8 @@ regex_warnings = { "gitorious URLs should always use https:// not http://"), ], 'Description': [ + (re.compile(r'^No description available$'), + "Description yet to be filled"), (re.compile(r'[ ]*[*#][^ .]'), "Invalid bulleted list"), (re.compile(r'^ '),