diff --git a/fdroidserver/lint.py b/fdroidserver/lint.py index 4a47746c..1d6d9548 100644 --- a/fdroidserver/lint.py +++ b/fdroidserver/lint.py @@ -78,6 +78,8 @@ regex_warnings = { "No need to specify that the app is Free Software"), (re.compile(r'.*((your|for).*android|android.*(app|device|client|port|version))', re.IGNORECASE), "No need to specify that the app is for Android"), + (re.compile(r'.*[a-z0-9][.!?]( |$)'), + "Punctuation should be avoided"), ], 'Description': [ (re.compile(r'^No description available$'), @@ -96,10 +98,6 @@ regex_pedantic = { (re.compile(r'.*github\.com/[^/]+/[^/]+/issues/.*'), "/issues is often enough on its own"), ], - 'Summary': [ - (re.compile(r'.*[a-z0-9][.!?][ $]'), - "Punctuation should be avoided"), - ], }