mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03: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:
parent
d104f2e1fb
commit
a36865e9b1
1 changed files with 2 additions and 0 deletions
|
|
@ -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'^ '),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue