1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-03 17:50:11 +02:00

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.
This commit is contained in:
Daniel Martí 2014-05-16 13:04:31 +02:00
parent d104f2e1fb
commit a36865e9b1

View File

@ -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'^ '),