mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 15:30:28 +03:00
Add lint warning for empty summaries
This commit is contained in:
parent
f7f8c80018
commit
858c1eabc1
1 changed files with 4 additions and 0 deletions
|
|
@ -78,6 +78,10 @@ regex_warnings = {
|
|||
(re.compile(r'^(|None|Unknown)$'),
|
||||
"No license specified"),
|
||||
],
|
||||
'Summary': [
|
||||
(re.compile(r'^$'),
|
||||
"Summary yet to be filled"),
|
||||
],
|
||||
'Description': [
|
||||
(re.compile(r'^No description available$'),
|
||||
"Description yet to be filled"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue